Windows 窗体应用程序有类似共享对象的东西吗?
我需要一些可以更新并在许多 Win 表单应用程序中可用的数据。 (就像 Flex/Flash 中的共享对象一样)。 任何客户端都可以更新该数据,并且此更新应该到达所有其他客户端。 Windows 窗体应用程序中是否有可以满足我的要求的内容?
I need to have some data which can be updated and be available among a number of Win form applications. (Just like Shared Objects in Flex/Flash).
Any client can update the piece of data and this update should reach every other client.
Is there something in Windows Form Apps that could match my requirments?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将要共享的中央数据存储在数据库中,每个应用程序都可以 ping 数据库以获取更新的数据。如果您不想使用数据库,您可以对对象进行二进制序列化并将其传递给其他应用程序,您可以使用套接字等使应用程序相互通信。
You could store the central data to be shared in a database, each application could ping the database to get the updated data. If you dont want to use the database, you could binary serialize the object and pass it to other applications, you could make applications talk to each other by using sockets etc.