[Mono-bugs] [Bug 80410][Min] New - Incorrect cursor over context menu for a splitter

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Sat Dec 30 20:43:42 EST 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 georgegiolfan at yahoo.com.

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: toshok at ximian.com                            
+ReportedBy: georgegiolfan at yahoo.com               
+QAContact: mono-bugs at ximian.com
+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.


More information about the mono-bugs mailing list