我一直在尝试制作一个脚本,当您单击鼠标左键时将鼠标向下拖动。到目前为止,我的代码看起来像这样(仅用于我一直在使用 Write "1" 部分的测试)
static void Main(string[] args)
{
while (true)
{
while (Console.ReadKey(false).Key == ConsoleKey.LeftWindows)
Console.Write("1");
}
}
现在我知道那LeftWindows
不是鼠标左键。我只是不知道。