表单数据集更新
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用计时器控件 - 这是一个示例教程。
You could use a timer control - here is an example tutorial.
将
Timer
添加到您的表单,将其间隔设置为 5000 毫秒,并在计时器Tick
事件上更新您的数据集。Add a
Timer
to your form, set its interval to 5000ms and on timerTick
event update your dataset.您可能想查看 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.