views:

117

answers:

1

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:

  1. http://blogs.msdn.com/llobo/archive/2010/04/30/sl-timeline-control-for-sharepoint.aspx
  2. http://timeline.codeplex.com/
  3. http://timelinecontrol.codeplex.com/wikipage?title=Screen%20Shots&referringTitle=Home
+1  A: 

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:

Guy Starbuck