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=80410 --- shadow/80410 2006-12-30 20:43:42.000000000 -0500 +++ shadow/80410.tmp.29670 2006-12-30 20:43:42.000000000 -0500 @@ -0,0 +1,48 @@ +Bug#: 80410 +Product: Mono: Class Libraries +Version: 1.2 +OS: Windows XP +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Minor +Component: Windows.Forms +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: Incorrect cursor over context menu for a splitter + +Description of Problem: +The mouse cursor over the context menu of a splitter is incorrect. + +Steps to reproduce the problem: +1. Compile and run the following program. +using System.Drawing; +using System.Windows.Forms; +class TestForm : Form { + static void Main() { + Application.Run(new TestForm()); + } + public TestForm() { + Splitter s = new Splitter(); + s.BackColor = Color.Red; + s.Width = 100; + Controls.Add(s); + s.ContextMenu = new ContextMenu(); + s.ContextMenu.MenuItems.Add(new MenuItem("Test")); + } +} +2. Right-click the red area. + +Actual Results: +Resize cursor. + +Expected Results: +Normal cursor. + +How often does this happen? +Always. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
