Example #1
0
 public void CancelCrewSelection()
 {
     if (_crewSelectionWindow != null)
     {
         WindowManager.Close(_crewSelectionWindow);
         _crewSelectionWindow = null;
     }
 }
Example #2
0
 public void CrewSelection(string crewSelectionString, IWindow parent = null)
 {
     CancelCrewSelection();
     _crewSelectionWindow = new CrewSelectionWindow(this, crewSelectionString, "Planned Crew");
     WindowManager.Open(_crewSelectionWindow, parent: parent);
 }