System.Collections.Concurrent.ConcurrentBag.Add(ChildProgressBar)

Here are the examples of the csharp api class System.Collections.Concurrent.ConcurrentBag.Add(ChildProgressBar) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: shellprogressbar
Source File: ProgressBarBase.cs
public ChildProgressBar Spawn(int maxTicks, string message, ProgressBarOptions options = null)
		{
			var pbar = new ChildProgressBar(maxTicks, message, DisplayProgress, options, this.Grow);
			this.Children.Add(pbar);
			DisplayProgress();
			return pbar;
		}