Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个窗口表单,它的参数很少,还有一个图表控件来绘制它。这几个参数是一个跟踪栏,我这样做是为了每次这些跟踪栏值发生变化时,图表都会更新。
但是,我注意到,如果我拖动轨迹栏,图表绘制会突然花费大量时间。
如何实现图表以便图表定期更新?在应用程序意识到没有值发生变化后说两秒钟?
非常感谢。
将Timer控件添加到您的表单。将该Interval属性设置为 2000(2 秒)。每次影响图表的任何因素发生变化时,将计时器的Enabled属性设置为 true。在计时器的Tick事件处理程序中,将计时器的Enabled属性设置为 false,然后更新图表控件。
Timer
Interval
Enabled
Tick