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=78946 --- shadow/78946 2006-07-25 11:02:08.000000000 -0400 +++ shadow/78946.tmp.14243 2006-07-25 11:02:08.000000000 -0400 @@ -0,0 +1,60 @@ +Bug#: 78946 +Product: Mono: Class Libraries +Version: 1.1 +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: Mouse selection in ComboBox is broken. + +Description of Problem: +Clicking in the textbox of a standard combobox begins selection highlight +mode, but releasing the mouse button does not terminate selection highlight +mode. (Tested on Windows). + +Steps to reproduce the problem: +1. Compile the program below. +2. Run the program below. +3. Click (and release) between the 2 p's in "Apple". +4. Move the mouse to the left and right, the text will still highlight even +though the mouse button is not pressed. + +Actual Results: +The text will highlight (be selected) even though the mouse button is not +currently pressed. + +Expected Results: +The text should not highlight. + +How often does this happen? +Always. + +Additional Information: +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.DropDown; + cb.DataSource = new string [] {"Apple", "Banana", "Cherry", "Donuts", +"Eggs", "Fish"}; + Controls.Add (cb); + } +} _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
