摘要: string path1 = @"d:\log.txt"; //打开D盘下的log.txt文件 System.Diagnostics.Process.Start(path1); string path2 = @"d:\test"; //调用资源管理器,打开D盘下的test文件夹 System.Dia 阅读全文
posted @ 2018-08-13 12:16 左正 阅读(5968) 评论(0) 推荐(0) 编辑
摘要: 1.System.Windows.Forms.SendKeys 组合键:Ctrl = ^ 、Shift = + 、Alt = % 模拟按键:A 模拟组合键:CTRL + A SendKeys.Send // 异步模拟按键(不阻塞UI) SendKeys.SendWait // 同步模拟按键(会阻塞U 阅读全文
posted @ 2018-08-13 11:32 左正 阅读(11073) 评论(0) 推荐(0) 编辑