Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=82572 --- shadow/82572 2007-08-24 11:16:08.000000000 -0400 +++ shadow/82572.tmp.18858 2007-08-24 11:16:08.000000000 -0400 @@ -0,0 +1,57 @@ +Bug#: 82572 +Product: Mono: Class Libraries +Version: 1.0 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Wishlist +Component: Windows.Forms +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: DataGridView not visible in form + +Steps to reproduce: + +Run the code + +Observed: + +Form containing grey area appears + +Expected: + +Form with datagridview should appear + +Code: + +using System.Windows.Forms; +using System.Collections.Generic; +using System.ComponentModel; + +class Form1 : Form { + static void Main() { + Application.Run(new Form1()); + } + + DataGridView dataGridView = new DataGridView(); + + Form1() { + IList<Customer> list = new Customer[1]; + dataGridView.DataSource = new BindingList<Customer>(list); + Controls.Add(dataGridView); + } +} + +class Customer { + string name; + public string Name { + get { return name; } + set { name = value; } + } +} _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
