c# – 向程序发送击键

前端之家收集整理的这篇文章主要介绍了c# – 向程序发送击键前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在窗体中,我做了一个按钮,我试图让它发送F1到一个特定的窗口(如FireFox,我的电脑等) @H_301_2@我的问题是:

@H_301_2@>我该如何用窗口的名字来做? (如“Mozilla Firefox”)
>如何按进程的名称进行操作? (如firefox.exe)

解决方法

按窗口名称
[DllImport("User32.dll")] 
static extern IntPtr FindWindow(string lpClassName,string lpWindowName);  
[DllImport("User32.dll")] 
static extern int SetForegroundWindow(IntPtr hWnd);

IntPtr ptrFF = FindWindow(null,"Mozilla Firefox");
SetForegroundWindow(ptrFF);
SendKeys.SendWait("{F1}");
@H_301_2@按进程名称

Process proc = Process.GetProcessesByName("firefox")[0];
IntPtr ptrFF = proc.Handle;
SetForegroundWindow(ptrFF);
SendKeys.SendWait("{F1}");
原文链接:https://www.f2er.com/csharp/93531.html

猜你在找的C#相关文章