Windows 窗体应用程序有类似共享对象的东西吗?

发布于 2024-10-12 20:01:34 字数 128 浏览 4 评论 0原文

我需要一些可以更新并在许多 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初吻给了烟 2024-10-19 20:01:34

您可以将要共享的中央数据存储在数据库中,每个应用程序都可以 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文