C# 中的 IPC,将文本从一个 exe 发送到另一个 exe

本文关键字:exe 一个 另一个 IPC 中的 文本 | 更新日期: 2023-09-27 18:33:50

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

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

C# 中的 IPC,将文本从一个 exe 发送到另一个 exe

[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);
    }
}

要在你控制的两个应用程序之间发送数据,你可以使用 NamedPipeClientStream 和 NamedPipeServerStream