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=79963 --- shadow/79963 2006-11-17 17:20:27.000000000 -0500 +++ shadow/79963.tmp.11746 2006-11-17 17:20:27.000000000 -0500 @@ -0,0 +1,47 @@ +Bug#: 79963 +Product: Mono: Class Libraries +Version: 1.2 +OS: Windows XP +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Cosmetic +Component: Windows.Forms +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: The mouse cursor is displayed incorrectly over context menus. + +Description of Problem: +The mouse cursor is displayed incorrectly over context menus. + +Steps to reproduce the problem: +1. Compile and run the following program: +using System.Windows.Forms; +class Test { + static void Main() { + Form MyForm = new Form(); + MyForm.Cursor = Cursors.WaitCursor; + MyForm.ContextMenu = new ContextMenu(); + MyForm.ContextMenu.MenuItems.Add("Test"); + Application.Run(MyForm); + } +} +2. Right-click on the window and move the mouse cursor over the context +menu. + + +Actual Results: +Mouse cursor remains the same (hourglass). + +Expected Results: +Mouse cursor changes to default. + +How often does this happen? +Always. + +Additional Information: _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
