我使用SendKeys.SendWait
向其他正在运行的应用程序发送击键。但如果目标应用程序没有最小化,它就无法工作。这种方法有什么问题吗?将键击发送到正在运行的应用程序的其他方法是什么。
我正在使用的代码块:
SetForegroundWindow(handleToApplication);
System.Windows.Forms.SendKeys.SendWait(Keystroke);
答案 0 :(得分:0)
我建议在将密钥发送给它之前操纵窗口......
private void setWindowState(string windowTitle, int option)
{
/**
SW_HIDE 0
SW_SHOWNORMAL 1
SW_NORMAL 1
SW_SHOWMINIMIZED 2
SW_SHOWMAXIMIZED 3
SW_MAXIMIZE 3
SW_SHOWNOACTIVATE 4
SW_SHOW 5
SW_MINIMIZE 6
SW_SHOWMINNOACTIVE 7
SW_SHOWNA 8
SW_RESTORE 9
SW_SHOWDEFAULT 10
SW_FORCEMINIMIZE 11
SW_MAX 11
**/
Process[] plist = Process.GetProcesses();
IntPtr handle = new IntPtr();
foreach (Process x in plist)
{
if (x.MainWindowTitle == windowTitle)
{
handle = x.MainWindowHandle;
break;
}
}
ShowWindow(handle, option);
}