楼上是不是刷新太频繁了?
强制刷新用
this.invalidate();

解决方案 »

  1.   

    to 小新应该不是这个原因,在Form上就可以得到鼠标的坐标
    public Form1()
            {
                InitializeComponent();
                this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseMove);
                        }
    private void Form1_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)
            {
                coordinate.Text = e.X.ToString() + "," + e.Y.ToString();//无法获得控件上的坐标        
            }我想是不是picturebox缺了this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Form1_MouseMove);这句
    可是加上这句后,执行程序就挂了