如何将keypresses发送到正在运行的流程对象?

时间:2010-04-21 22:02:02

标签: c# .net process input keyboard

我正在尝试让C#启动一个应用程序(在这种情况下是开放式办公室),并开始发送该应用程序按键,使其看起来好像有人正在打字。理想情况下,我可以发送一个正在运行的开放式办公流程来处理字母“d”的按键,然后打开办公室就会在纸上输入d。任何人都可以根据具体情况给我指点吗?我试图做以下事情:

p = new Process();
p.StartInfo.UseShellExecute = true;
p.StartInfo.CreateNoWindow = false;
p.StartInfo.FileName = processNames.executableName;

p.Start();

p.StandardInput.Write("hello");

但这并没有给我带来预期的效果 - 我没有看到在开放式办公室输入的文字。

2 个答案:

答案 0 :(得分:3)

你必须通过Win32 sendmessages这样做:基本的想法是这样的:

拳头你需要一个指向已启动的流程窗口的指针:

using System.Runtime.InteropServices;

[DllImport("user32.dll", SetLastError = true)]
private static extern IntPtr FindWindow(string lpClassName, string lpWindowName);

private void button1_Click(object sender, EventArgs e)
{
  // Find a window with the name "Test Application"
  IntPtr hwnd = FindWindow(null, "Test Application");
}

然后使用SendMessage或PostMessage(我猜你喜欢这种情况):

http://msdn.microsoft.com/en-us/library/ms644944(v=VS.85).aspx

在此消息中指定要发送按键的正确消息类型(例如WM_KEYDOWN):

http://msdn.microsoft.com/en-us/library/ms646280(VS.85).aspx

查看PInvoke.net获取PInvoke源代码。

或者,您可以在使用FindWindow将该窗口置于前台后使用SendKeys.Send(.Net)方法。然而,这有点不可靠。

答案 1 :(得分:1)

我是使用SetForegroundWindow和SendKeys完成的。

我将它用于this

[DllImport("user32.dll", ExactSpelling = true, CharSet = CharSet.Auto)]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool SetForegroundWindow(IntPtr hWnd);

public void SendText(IntPtr hwnd, string keys)
{
    if (hwnd != IntPtr.Zero)
    {
        if (SetForegroundWindow(hwnd))
        {
            System.Windows.Forms.SendKeys.SendWait(keys);
        }
    }
}

这可以像这样使用。

Process p = Process.Start("notepad.exe");
SendText(p.MainWindowHandle, "Hello, world");