WPF:需要实时时间线控制
我需要实时反映众多任务的执行进度。
我想知道是否有 WPF\Silverlight 控件可以执行此操作。
这是我发现的,但此控件不能满足我的需求:
I need to reflect progress of execution of numerous tasks in real time.
I wondering is it any WPF\Silverlight control which do this.
Here what I found, but this controls don't meet my needs:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在寻找实时更新的进度条,我不知道有任何第三方控件,但您可以使用 WPF 调度程序根据后台线程上正在完成的工作来更新标准 ProgressBar 控件。我已经实现了这种模式,多个线程同时报告树视图中的多个进度条,没有任何问题。
以下是我发现的一些介绍这种方法的文章:
If you are looking for a progress bar that updates in real time, I don't know of any 3rd party controls, but you can update a standard ProgressBar control based on work being done on a background thread using the WPF Dispatcher. I have implemented this pattern with multiple threads reporting back to multiple progress bars in a tree view simultaneously with no problems.
Here are a few articles I found that walk through this approach: