private void timer1_Tick(object sender, EventArgs e)
        {
            timer1.Enabled = true;
            timer1.Start();
            CurrPoint = new Point(Cursor.Position.X, Cursor.Position.Y);
            Cursor.Position = new Point(CurrPoint.X + 1, CurrPoint.Y + 1);
            label1.Text = CurrPoint.X.ToString();
            label2.Text = CurrPoint.Y.ToString();
        }
posted on 2008-08-30 16:09  yxbsmx  阅读(894)  评论(0编辑  收藏  举报