我想寫一個程序,將採取一行數據,並將其傳遞到另一個窗口/進程。c#發送鍵盤命令到另一個窗口/進程
這是我到目前爲止的代碼,但我一直無法解決如何將鍵盤命令發送到OUTLOOK進程。
我希望能夠使用Tab命令/鍵和輸入命令/鍵。
這是我到目前爲止已經試過
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Threading;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Windows.Forms;
namespace Config
{
class Program
{
[STAThread]
static void Main(string[] args)
{
System.Threading.Thread.Sleep(30);//300000
TextReader tr = new StreamReader("config.txt");
Clipboard.SetText(tr.ReadLine());
tr.Close();
var proc = Process.GetProcessesByName("OUTLOOK").FirstOrDefault();
if (proc != null && proc.MainWindowHandle != IntPtr.Zero)
{
SetForegroundWindow(proc.MainWindowHandle);
//SendKeys.Send("{ENTER}");
// Clipboard.GetText();
}
}
[DllImport("user32")]
private static extern bool SetForegroundWindow(IntPtr hwnd);
}
}
泰的答案,但這不發送鍵盤命令,據我可以看到它剛剛的過去文本在 – monkeylumps 2011-12-22 15:23:35
您可以爲擊鍵設置一個標誌。例如。對於Tab鍵:'SendMessage(hwnd,WM_KEYDOWN,VK_TAB,NULL)' – arminb 2011-12-22 15:28:55