在 运行 时与 WinForms 应用进行通信
Communicate with WinForms app while it's running
我有一个 Windows 服务,我希望它能够与 我的 桌面应用程序通信。桌面应用程序是一个 WinForms 应用程序。该服务应该能够在后台与应用程序通信,而应用程序是 运行。使用来自服务的命令启动应用程序是不可接受的。
Windows 服务(或另一个 WinForms 应用程序)如何与另一个 WinForms 桌面应用程序通信,而该应用程序已经 运行?
很遗憾,我没有简单的答案。
IPC(进程间通信)有多种选择,例如:Mailslot、NamedPipe、Memory Mapped File、Socket、Windows Messaging、Remoting、WCF、Web sockets with a local web server,watching a共享文件、消息总线、...
查看更多信息:
Passing Information Between Applications in C#
Communication between ASP MVC and WinForm Applications
HTH
我有一个 Windows 服务,我希望它能够与 我的 桌面应用程序通信。桌面应用程序是一个 WinForms 应用程序。该服务应该能够在后台与应用程序通信,而应用程序是 运行。使用来自服务的命令启动应用程序是不可接受的。
Windows 服务(或另一个 WinForms 应用程序)如何与另一个 WinForms 桌面应用程序通信,而该应用程序已经 运行?
很遗憾,我没有简单的答案。
IPC(进程间通信)有多种选择,例如:Mailslot、NamedPipe、Memory Mapped File、Socket、Windows Messaging、Remoting、WCF、Web sockets with a local web server,watching a共享文件、消息总线、...
查看更多信息:
Passing Information Between Applications in C#
Communication between ASP MVC and WinForm Applications
HTH