I have a WPF application and a MFC application. I want to do a two communication between them. I can use SendMessage in mfc application to send messages to WPF application. How can I do the same in WPF application?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
If you can do it in MFC, then you can do it in C# too by importing the SendMessage API call:
[DllImport("user32.dll", CharSet = CharSet.Auto)]
static extern IntPtr SendMessage(IntPtr hWnd, UInt32 Msg, IntPtr wParam, StringBuilder lParam);
You can find sample usage of SendMessage in this link.