表单数据集更新

发布于 2024-11-09 12:39:45 字数 180 浏览 0 评论 0原文

我正在使用 devexpress 组件“XtraCharts”来准备图形报告。我设计了一个数据集并将其附加到图表中。数据库中的值出现在报告中。到这里还没有问题。

但在我的应用程序中,我从传感器读取数据,因此值连续进入数据库,并且我需要每 5 秒刷新此数据集。

如何在 C# winforms 应用程序中执行此操作?

I am using devexpress component "XtraCharts" to be able to prepare a graphical report. I designed a dataset and attached it to the chart. The values from the database appear in the report. There is no problem up to here.

But in my application I read data from a sensor so values come to db consecutively and I need to refresh this dataset every 5 seconds.

How can I do this in a C# winforms application?

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

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

发布评论

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

评论(3

镜花水月 2024-11-16 12:39:45

您可以使用计时器控件 - 这是一个示例教程

You could use a timer control - here is an example tutorial.

风吹短裙飘 2024-11-16 12:39:45

Timer 添加到您的表单,将其间隔设置为 5000 毫秒,并在计时器 Tick 事件上更新您的数据集。

Add a Timer to your form, set its interval to 5000ms and on timer Tick event update your dataset.

橘亓 2024-11-16 12:39:45

您可能想查看 Timer 类。您可以设置希望计时器“滴答”的时间间隔以及计时器滴答时更新图表的时间。

You probably want to look at the Timer class. You can set the interval you wish the timer to "Tick" at and when the timer ticks update your chart.

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