需要 WPF XML 绑定建议

发布于 2024-12-15 16:46:51 字数 187 浏览 0 评论 0原文

我有一个 C# WPF 程序,需要显示 GridView 和 2D 图形数据,这些数据最初来自硬件设备。我还想连续(或经常定期)将此数据备份到磁盘上的 XML 文件。在 Visual Studio 中实现此功能的最简单方法是什么?我应该首先创建 XML 架构,还是使用数据集设计器?我是否应该为数据集操心,或者消除它们并将传入数据直接写入 xml 是否有意义?

I have a C# WPF program that needs to display GridView and 2D graph data which initially will come from a hardware device. I also want to continuously (or frequently periodic) backup this data to an XML file on disk. What would be the easiest way to implement this in visual studio? Should I create an XML schema first, or use the dataset designer? Should I bother with datasets at all or would it make sense to eliminate them and write my incoming data directly to xml?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

生生漫 2024-12-22 16:46:51

我建议:

  1. 提前规划 XML 的结构。创建一个简单的空文件来帮助您完成整个过程。
  2. 创建数据序列化提供程序及其将实现的接口。在您的情况下,它将是一个 XML 提供程序(谁知道,您将来可能需要将数据保存到数据库中。您应该提前计划。)
  3. 编写一个自定义类,使用 LinqToXML 将您的 poco 域对象序列化为 xml。

I would recommend:

  1. Plan a structure of an XML ahead. Create a simple empty file to help you along the way.
  2. Create a data serialization provider as well as the interface that it will implement. In your case it will be an XML provider (who knows, you may need to save the data to a database in future. You should plan ahead for that.)
  3. Write a custom class that serializes your poco domain objects into an xml using LinqToXML.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文