protected virtual void Launch()
 {
     if (this.controlDialog == null)
     {
         this.controlDialog = new ConstellationControlDialog("CommNet Constellation - <color=#00ff00>Control Panel</color>");
     }
     this.controlDialog.launch();
 }
 protected virtual void Dismiss()
 {
     if (this.controlDialog != null)
     {
         this.controlDialog.dismiss();
         this.controlDialog = null;
     }
 }
 protected virtual void Launch()
 {
     if (this.controlDialog == null)
     {
         this.controlDialog = new ConstellationControlDialog(Localizer.Format("#CNC_CommNetConstellation_title"));//"CommNet Constellation - <color=#00ff00>Control Panel</color>"
     }
     this.controlDialog.launch();
 }