摘要:
string path1 = @"d:\log.txt"; //打开D盘下的log.txt文件 System.Diagnostics.Process.Start(path1); string path2 = @"d:\test"; //调用资源管理器,打开D盘下的test文件夹 System.Dia 阅读全文
摘要:
1.System.Windows.Forms.SendKeys 组合键:Ctrl = ^ 、Shift = + 、Alt = % 模拟按键:A 模拟组合键:CTRL + A SendKeys.Send // 异步模拟按键(不阻塞UI) SendKeys.SendWait // 同步模拟按键(会阻塞U 阅读全文