https://bugzilla.novell.com/show_bug.cgi?id=343971
User [EMAIL PROTECTED] added comment https://bugzilla.novell.com/show_bug.cgi?id=343971#c2 --- Comment #2 from andrus moor <[EMAIL PROTECTED]> 2007-12-17 03:05:46 MST --- This happens with any listbox probably. Anyway, here is test case: using System; using System.Windows.Forms; public class Test { static void Main() { Application.Run(new Form1()); } } class Form1 : Form { public Form1() { listBox1 = new ListBox(); listBox1.Items.Add("1"); listBox1.Items.Add("2"); listBox1.Items.Add("3"); Controls.Add(this.listBox1); } ListBox listBox1; } -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
