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=78945 --- shadow/78945 2006-07-25 10:42:08.000000000 -0400 +++ shadow/78945.tmp.14064 2006-07-25 10:42:08.000000000 -0400 @@ -0,0 +1,58 @@ +Bug#: 78945 +Product: Mono: Class Libraries +Version: 1.1 +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Minor +Component: Windows.Forms +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: Scrollwheel doesn't work on ComboBox + +Description of Problem: +When a ComboBox is not in it's dropdown state, but has focus, the mouse +scroll wheel should scroll through the items in the text box. (Tested +using Windows.) + +Steps to reproduce the problem: +1. Compile program below. +2. Run program below. +3. The form should come up with the text in the combobox selected. +4. Move the mouse wheel up and down. + +Actual Results: +The value of the combobox does not change. + +Expected Results: +The value of the combobox should scroll through the available options. + +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
