我想送CTRL一個(選擇所有的應用程序在這種情況下,詞,但嘗試,因爲我可能它不工作)我已經嘗試了不少組合但都無濟於事,有什麼想法?的SendKeys按Ctrl-A不工作
IntPtr appHandle = FindWindow(null, "Document1 - Microsoft Word");
if (appHandle == IntPtr.Zero)
{
MessageBox.Show("Specified app is not running.");
return;
}
SetForegroundWindow(appHandle);
System.Threading.Thread.Sleep(500);
//SendKeys.SendWait("111");
SendKeys.SendWait("^A");
//SendKeys.SendWait("^(A)"); //ctrl a
//SendKeys.SendWait("(^A)");
嘗試這樣做,這是行不通的。 嘗試使用Alt鍵連擊,他們不給我任何工作.... – ALI 2010-08-07 16:36:15