在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
Point ms = Control.MousePosition; //获取鼠标位置 this.label2.Text = string.Format("{0}:{1}", ms.X, ms.Y); MouseButtons mb= Control.MouseButtons; //获取鼠标按键 if (mb == System.Windows.Forms.MouseButtons.Left) this.label3.Text = "Left"; if (mb == System.Windows.Forms.MouseButtons.Right) this.label3.Text = "Right"; if (mb == System.Windows.Forms.MouseButtons.Middle) this.label3.Text = "Middle"; 通过以上代码可以获取鼠标在屏幕上的位置信息,以及鼠标按下的键的信息. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论