[Mono-bugs] [Bug 78848][Nor] New - Combobox does not handle multiple items with the same value correctly
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Thu Jul 13 15:20:06 EDT 2006
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 jackson at ximian.com.
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: peter at novonyx.com
+ReportedBy: jackson at ximian.com
+QAContact: mono-bugs at ximian.com
+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);
+ }
+
+}
More information about the mono-bugs
mailing list