[Mono-bugs] [Bug 331648] New: DataGridView: new row does not appear
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Sun Oct 7 12:01:11 EDT 2007
https://bugzilla.novell.com/show_bug.cgi?id=331648
Summary: DataGridView: new row does not appear
Product: Mono: Class Libraries
Version: 1.2
Platform: x86
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Windows.Forms
AssignedTo: mono-bugs at ximian.com
ReportedBy: kobruleht2 at hot.ee
QAContact: mono-bugs at ximian.com
Found By: ---
Observed:
Grid does not contain any rows
Expected:
Grid should contain one row
Environment: MONO 1.2.5 .NET 2 profile
Code to reproduce:
using System;
using System.Windows.Forms;
public class VirtualJustInTimeDemo : Form {
DataGridView dataGridView1 = new DataGridView();
protected override void OnLoad(EventArgs e) {
dataGridView1.Columns.Add("TEST", "test");
this.Controls.Add(this.dataGridView1);
base.OnLoad(e);
}
[STAThreadAttribute()]
public static void Main() {
Application.Run(new VirtualJustInTimeDemo());
}
}
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
More information about the mono-bugs
mailing list