C# 图像处理:获取鼠标位置信息(全局)

            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";

通过以上代码可以获取鼠标在屏幕上的位置信息,以及鼠标按下的键的信息.

上一篇:Java 基础 内部类


下一篇:Grunt、Gulp和Webpack对比