在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
模拟键盘CTRL+S 的输入 using System; using System.Collections.Generic; using System.Diagnostics; using System.ComponentModel; using System.Runtime.InteropServices; using System.Windows.Forms; namespace Test_C_Shap { static class Program { [DllImport("user32.dll")] public static extern int SetForegroundWindow(IntPtr hWnd); static void Main() { Process[] processes = Process.GetProcessesByName("notepad"); foreach (Process proc in processes) { SetForegroundWindow(proc.MainWindowHandle); SendKeys.SendWait("^(s)"); } } } } 添加System.Windows.Forms时要注意添加对应的dll文件 方法:Project-> Add Reference->Browse 浏览dll所在的文件夹,一般UI自动化的在WPF文件夹中,Forms一般在C:\Windows\Microsoft.NET\Framework\v4.0.30319(根据实际的version) |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论