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=78377 --- shadow/78377 2006-07-13 00:21:34.000000000 -0400 +++ shadow/78377.tmp.1187 2006-07-13 00:55:34.000000000 -0400 @@ -1,13 +1,13 @@ Bug#: 78377 Product: Mono: Class Libraries Version: 1.1 OS: unknown OS Details: -Status: RESOLVED -Resolution: FIXED +Status: REOPENED +Resolution: Severity: Unknown Priority: Minor Component: Windows.Forms AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] QAContact: [EMAIL PROTECTED] @@ -60,6 +60,40 @@ ------- Additional Comments From [EMAIL PROTECTED] 2006-07-13 00:21 ------- These should all be fixed now. I am not totally sure of the problem on all of them though, so if you can confirm I'd appreciate it. Thanks! + +------- Additional Comments From [EMAIL PROTECTED] 2006-07-13 00:55 ------- +Awesome, most of the bugs are fixed :-) + +- When ComboBox gets focus, on .NET it selectAlls the text so that +just typing characters clears the value. + +Only this does not seem to be fixed yet. + +using System; +using System.Drawing; +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.DropDown;//List; + cb.DataSource = new string [] {"A", "B1", "B2", "C", "D", "D", "Z", +"T1", "B3", "\u3042\u3044"}; + Controls.Add (cb); + cb.Location = new Point (0, 100); + Controls.Add (new Button ()); + } +} + +To verify it, move to the ComboBox, unselect the selection, move to +the Button and move to the ComboBox again. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
