从系统托盘中运行的Windows应用程序访问对象

时间:2009-06-06 22:38:26

标签: c# activex

I want to have one application running in the system tray managing the communication between the client / server and login's to the server.  Then I want to have multiple c# applications access a class inside the application running in the system tray.  When the calling windows application calls the system tray application - the system tray should start up if it is not running.

技术说明:
      1.所有应用程序都使用c#3.5       2.使用VB activeX EXE非常容易 - 不知道如何使用C#

1 个答案:

答案 0 :(得分:0)

在VB中,您可能一直使用DCOM来提供进程间通信。

.NET中最简单的方法可能是:公开WCF服务(很容易自行托管WCF服务器:使用ServiceHost类)并让客户端连接到该服务。