Ejemplo n.º 1
0
        public SimulatorWindow()
        {
            InitializeComponent();

            this.Loaded += (s, e) => DataContext = new SimulatorVM(_simulator);
            this.Closed += (s, e) => _simulator.StopSimulator();
        }
 public StopPayloadTelemetryCommand(SimulatorVM vm)
 {
     VM = vm;
 }
 public StartTelemetryCommand(SimulatorVM vm)
 {
     VM = vm;
 }
Ejemplo n.º 4
0
 public DeployPayloadCommand(SimulatorVM vm)
 {
     VM = vm;
 }
Ejemplo n.º 5
0
 public StartPayloadDataCommand(SimulatorVM vm)
 {
     VM = vm;
 }
 public RocketDeorbitCommand(SimulatorVM vm)
 {
     VM = vm;
 }
Ejemplo n.º 7
0
 public DecommissionCommand(SimulatorVM vm)
 {
     VM = vm;
 }
 public SearchCommand(SimulatorVM vm)
 {
     VM = vm;
 }
 public LaunchCommand(SimulatorVM vm)
 {
     VM = vm;
 }