Represents the main application window
Inheritance: System.Windows.Forms.Form
Exemple #1
0
 /// <summary>
 /// Initializes the workbench.
 /// </summary>
 public static void InitializeWorkbench(string title)
 {
     if (!_init)
     {
         instance = new Workbench();
         instance.SetTitle(title);
         _init = true;
         WorkbenchInitialized(instance, EventArgs.Empty);
     }
 }
Exemple #2
0
 /// <summary>
 /// Initializes the workbench.
 /// </summary>
 public static void InitializeWorkbench(string title)
 {
     if (!_init)
     {
         instance = new Workbench();
         instance.SetTitle(title);
         _init = true;
         WorkbenchInitialized(instance, EventArgs.Empty);
     }
 }