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

隐藏和显示鼠标

时间:2019-01-17 23:39:25      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:运用   eve   use   cli   分享   cursor   bool   ima   com   

实现效果:

  技术分享图片

知识运用:

  API函数ShowCursor  //控制鼠标指针的可视性 

实现代码:

        [DllImport("user32.dll", EntryPoint = "ShowCursor")]
        public extern static bool ShowCursor(bool bShow);
        private void button1_Click(object sender, EventArgs e)
        {
            ShowCursor(false);      //鼠标隐藏
        }
        private void button2_Click(object sender, EventArgs e)
        {
            ShowCursor(true);       //鼠标显示
        }

  

隐藏和显示鼠标

标签:运用   eve   use   cli   分享   cursor   bool   ima   com   

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

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