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=78848 --- shadow/78848 2006-07-13 15:20:05.000000000 -0400 +++ shadow/78848.tmp.21286 2006-07-13 15:20:05.000000000 -0400 @@ -0,0 +1,39 @@ +Bug#: 78848 +Product: Mono: Class Libraries +Version: 1.0 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: Windows.Forms +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: Combobox does not handle multiple items with the same value correctly + +Try moving through the list using keyboard: + +using System; +using System.Windows.Forms; + +public class Test : Form +{ + public static void Main () + { + Application.Run (new Test ()); + } + + public Test () + { + ComboBox cb = new ComboBox (); + cb.DropDownStyle = ComboBoxStyle.DropDownList; + cb.DataSource = new string [] {"A", "B", "A", "C" }; + Controls.Add (cb); + } + +} _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
