Exemple #1
0
 static public void ShowContinuous(string title)
 {
     using (ProgressbarForm dlg = new ProgressbarForm(title))
     {
         dlg.Setup(0, 20, 4, 70);
         dlg.ShowDialog();
     }
 }
Exemple #2
0
 public static void ShowContinuous(string title)
 {
     using(ProgressbarForm dlg = new ProgressbarForm(title))
     {
         dlg.Setup(0, 20, 4, 70);
         dlg.ShowDialog();
     }
 }
Exemple #3
0
 static public void Main(string[] args)
 {
     if (args.Length == 1 && (args[0] == "?" || args[0] == "/?" || args[0] == "-?" || args[0].ToLower() == "help"))
     {
         Console.WriteLine(usage);
     }
     else
     {
         ProgressbarForm.ShowContinuous("Progress");
     }
 }