public RootBarControler(ProgressForm form) { _parentForm = form; }
public static void DisplayProgressBar(string taskTitle, Action <IProgressBarControler> task) { var f = new ProgressForm(taskTitle, task); f.ShowDialog(); }
public static void DisplayProgressBar(string taskTitle, Action<IProgressBarControler> task) { var f = new ProgressForm(taskTitle,task); f.ShowDialog(); }