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=80613 --- shadow/80613 2007-01-31 18:34:19.000000000 -0500 +++ shadow/80613.tmp.21777 2007-01-31 18:44:38.000000000 -0500 @@ -20,6 +20,22 @@ A form can be moved by dragging its menu bar. The cursor has to be placed over an unused area (an area not occupied by a menu item). ------- Additional Comments From [EMAIL PROTECTED] 2007-01-31 18:34 ------- Can you provide a sample source code that reproduces problem and a more detailed description? + +------- Additional Comments From [EMAIL PROTECTED] 2007-01-31 18:44 ------- +Here is a sample. +using System.Windows.Forms; +class TestForm : Form { + static void Main() { + Application.Run(new TestForm()); + } + public TestForm() { + Menu = new MainMenu(new MenuItem[] { new MenuItem("&Test") }); + } +} +I am using Windows XP. When I place the mouse cursor in the middle of +the menu area, press and hold the left mouse button and move the +mouse, the window moves. + _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
