原点在左上,右为X正,下为Y正

解决方案 »

  1.   

    左上角啊写个程序看下拉
    private void timer1_Tick(object sender, System.EventArgs e)
    {
    System.Drawing.Point point=new System.Drawing.Point();
    GetCurPos.GetCursorPos(ref point);
        this.Visible=false;       //  this.label1.Text=this.Top.ToString()+":"+this.Size.Height.ToString();
    int x=Cursor.Position.X;
    int y=Cursor.Position.Y;
                      this.label1.Text=x.ToString()+":"+y.ToString();

      
    /*   
      

  2.   

    对,左上角,向右为X轴正轴,向下为Y轴正轴,呵。