winform完成限制及消除鼠標挪動規模的辦法。本站提示廣大學習愛好者:(winform完成限制及消除鼠標挪動規模的辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是winform完成限制及消除鼠標挪動規模的辦法正文
本文實例講述了winform完成限制及消除鼠標挪動規模的辦法。分享給年夜家供年夜家參考。詳細以下:
限制鼠標的挪動規模:
// this.Cursor = new Cursor(this.Cursor.Handle); // Cursor.Position = new Point(Cursor.Position.X, Cursor.Position.Y); Cursor.Clip = new Rectangle(this.Location, this.Size);
消除限制鼠標的挪動規模:
Screen[] screen = Screen.AllScreens; this.Cursor = new Cursor(Cursor.Current.Handle); Cursor.Clip = screen[0].Bounds;
願望本文所述對年夜家的C#法式設計有所贊助。