2

我想从 WPF 应用程序的文本框向打开的记事本发送一条消息。单击文本框旁边的按钮后,我的意思是,我希望将内容写入记事本。

如何在 2 个不同的应用程序之间发送消息?

4

2 回答 2

2
[DllImport("user32.dll", EntryPoint = "FindWindowEx")]
public static extern IntPtr FindWindowEx(IntPtr hwndParent, IntPtr hwndChildAfter, string lpszClass, string lpszWindow);

[DllImport("User32.dll")]
public static extern int SendMessage(IntPtr hWnd, int uMsg, int wParam, string lParam);

private static void DoSendMessage(string message)
{
    Process notepad = Process.Start(new ProcessStartInfo("notepad.exe"));
    notepad.WaitForInputIdle();

    if (notepad != null)
    {
        IntPtr child = FindWindowEx(notepad.MainWindowHandle, new IntPtr(0), "Edit", null);
        SendMessage(child, 0x000C, 0, message);
    }
}
于 2012-05-11T16:21:52.257 回答
1

要在您控制的两个应用程序之间发送数据,您可以使用NamedPipeClientStreamNamedPipeServerStream

于 2012-05-11T16:16:56.943 回答