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: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]
         QAContact: [EMAIL PROTECTED]
          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.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to