状态栏显示鼠标位置
在你的窗体中加入状态栏statusBar1和MouseMove事件,在这个事件里添加以下代码:this.statusBar1.Text = "鼠标现在的位置是:X="+ e.X +",Y=" + e.Y;