http://bugzilla.novell.com/show_bug.cgi?id=500386
User [email protected] added comment http://bugzilla.novell.com/show_bug.cgi?id=500386#c1 --- Comment #1 from Vanya Yani <[email protected]> 2009-05-02 07:51:17 MDT --- (From update of attachment 289553) >using System.Windows.Forms; > >public class CursorHide: Form { > static public void Main() { > Application.Run (new CursorHide()); > } > public CursorHide() { > Text = "Hello Application"; > this.MouseEnter += new System.EventHandler(this.myMouseEnter); > this.MouseLeave += new System.EventHandler(this.myMouseLeave); > } > private void myMouseEnter(object sender, System.EventArgs e) { > Cursor.Hide(); Must be hidden here > } > private void myMouseLeave(object sender, System.EventArgs e) { > Cursor.Show(); > } >} -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
