码迷,mamicode.com
首页 > 其他好文 > 详细

限制鼠标活动区域

时间:2019-01-17 21:53:37      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:分享图片   oca   ima   width   str   bounds   vat   div   图片   

实现效果:

  技术分享图片

知识运用:

  Cursor类中的相关属性

  技术分享图片

实现代码:

        private void button1_Click(object sender, EventArgs e)
        {
            this.Cursor = new Cursor(Cursor.Current.Handle);                    //创建Cursor对象
            Cursor.Position = new Point(Cursor.Position.X,Cursor.Position.Y);   //设置鼠标位置
            Cursor.Clip = new Rectangle(this.Location,this.Size);               //设置活动区域
        }

        private void button2_Click(object sender, EventArgs e)
        {
            this.Cursor = new Cursor(Cursor.Current.Handle);
            Screen[] screen = Screen.AllScreens;                                //获取显示的数组 
            Cursor.Clip= screen[0].Bounds;                                      //解除活动区域的限制
        }

  

限制鼠标活动区域

标签:分享图片   oca   ima   width   str   bounds   vat   div   图片   

原文地址:https://www.cnblogs.com/feiyucha/p/10284669.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!