Winform跨进程通信

简介: Winform跨进程通信
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace 大屏Win
{
    public class WinMessageHelper
    {
        private struct COPYDATASTRUCT
        {
            public IntPtr dwData;
            public int cbData;
            [MarshalAs(UnmanagedType.LPStr)]
            public string lpData;
        }
        //使用COPYDATA进行跨进程通信
        public const int WM_COPYDATA = 0x004A;
        [DllImport("User32.dll", EntryPoint = "SendMessage")]
        private static extern int SendMessage(
        int hWnd, // handle to destination window
        int Msg, // message
        int wParam, // first message parameter
        ref COPYDATASTRUCT lParam // second message parameter
        );
        [DllImport("User32.dll", EntryPoint = "FindWindow")]
        private static extern int FindWindow(string lpClassName, string lpWindowName);
        /// <summary>
        /// 发送消息
        /// </summary>
        /// <param name="windowReceiveTitle">接收方窗体标题名称</param>
        /// <param name="strData">要发送的数据</param>
        public static void Send(string windowReceiveTitle, string strData)
        {
            int winHandler = FindWindow(null, windowReceiveTitle);
            if (winHandler != 0)
            {
                byte[] sarr = System.Text.Encoding.Default.GetBytes(strData);
                int len = sarr.Length + 1;
                COPYDATASTRUCT cds;
                cds.dwData = (IntPtr)100;
                cds.lpData = strData;
                cds.cbData = len;
                SendMessage(winHandler, WM_COPYDATA, 0, ref cds);
            }
        }
        /// <summary>
        /// 接收消息
        /// </summary>
        /// <example>
        /// 在窗体中覆盖接收消息函数
        /// protected override void DefWndProc(ref System.Windows.Forms.Message m)
        /// {
        ///   switch(m.Msg)
        ///   {
        ///     case WinMessageHelper.WM_COPYDATA:
        ///       string str = WinMessageHelper.Receive(ref m);
        ///       break;
        ///     default:
        ///       base.DefWndProc(ref m);
        ///       break;
        /// 
        ///   }
        /// }
        /// </example>
        /// <returns>接收的到数据</returns>
        public static string Receive(ref System.Windows.Forms.Message m)
        {
            COPYDATASTRUCT cds = new COPYDATASTRUCT();
            Type cdsType = cds.GetType();
            cds = (COPYDATASTRUCT)m.GetLParam(cdsType);
            return cds.lpData;
        }
    }
}
相关文章
|
22天前
|
存储 Unix Linux
进程间通信方式-----管道通信
【10月更文挑战第29天】管道通信是一种重要的进程间通信机制,它为进程间的数据传输和同步提供了一种简单有效的方法。通过合理地使用管道通信,可以实现不同进程之间的协作,提高系统的整体性能和效率。
|
22天前
|
消息中间件 存储 供应链
进程间通信方式-----消息队列通信
【10月更文挑战第29天】消息队列通信是一种强大而灵活的进程间通信机制,它通过异步通信、解耦和缓冲等特性,为分布式系统和多进程应用提供了高效的通信方式。在实际应用中,需要根据具体的需求和场景,合理地选择和使用消息队列,以充分发挥其优势,同时注意其可能带来的复杂性和性能开销等问题。
|
2月前
|
存储 Python
Python中的多进程通信实践指南
Python中的多进程通信实践指南
23 0
|
3月前
|
Java Android开发 数据安全/隐私保护
Android中多进程通信有几种方式?需要注意哪些问题?
本文介绍了Android中的多进程通信(IPC),探讨了IPC的重要性及其实现方式,如Intent、Binder、AIDL等,并通过一个使用Binder机制的示例详细说明了其实现过程。
342 4
|
7月前
|
安全
【进程通信】信号的捕捉原理&&用户态与内核态的区别
【进程通信】信号的捕捉原理&&用户态与内核态的区别
|
7月前
|
Shell
【进程通信】利用管道创建进程池(结合代码)
【进程通信】利用管道创建进程池(结合代码)
|
4月前
|
Linux
Linux源码阅读笔记13-进程通信组件中
Linux源码阅读笔记13-进程通信组件中
|
4月前
|
消息中间件 安全 Java
Linux源码阅读笔记13-进程通信组件上
Linux源码阅读笔记13-进程通信组件上
|
4月前
|
消息中间件 存储 安全
python多进程并发编程之互斥锁与进程间的通信
python多进程并发编程之互斥锁与进程间的通信
|
4月前
|
Python
Python IPC深度探索:解锁跨进程通信的无限可能,以管道与队列为翼,让你的应用跨越边界,无缝协作,震撼登场
【8月更文挑战第3天】Python IPC大揭秘:解锁进程间通信新姿势,让你的应用无界连接
27 0

热门文章

最新文章

下一篇
无影云桌面