/// <summary>
 /// Creates a new controller window, or active the existing one.
 /// </summary>
 public static void create()
 {
     if (theInstance == null)
     {
         theInstance = new TerraceController();
     }
     theInstance.Show();
     theInstance.Activate();
 }
Exemple #2
0
 public override void showDialog()
 {
     TerraceController.create();
 }
 protected override void OnClosing(System.ComponentModel.CancelEventArgs e)
 {
     base.OnClosing(e);
     theInstance = null;
 }