using System;
using System.Runtime.InteropServices;
namespace ttt
{
class MainClass
{
[DllImport("user32")]
static extern bool SetCursorPos(int X, int Y);
public static void Main (string[] args)
{
SetCursorPos(0, 0); // 編譯執行後,會自動把滑鼠移到左上角 x = 0 , y = 0 的位置
}
}
}
全站熱搜
留言列表