Наследование: System.Windows.Forms.Form, IProgressUi
 public IProgressUi Create(int maxValue)
 {
     var form = new ProgressForm();
       form.SetMaximun (maxValue);
       form.Show();
       return form;
 }