public JoyStickViewModel(FlightManagerModel fmd)
 {
     this.setMapOfPaths();
     this.flightManagerModel             = fmd;
     flightManagerModel.PropertyChanged +=
         delegate(object sender, PropertyChangedEventArgs e) { };
 }
예제 #2
0
 public FlightBoardViewModel(FlightManagerModel fmd)
 {
     this.flightManagerModel             = fmd;
     flightManagerModel.PropertyChanged +=
         delegate(object sender, PropertyChangedEventArgs e)
     {
         NotifyPropertyChanged(e.PropertyName);
     };
 }
예제 #3
0
 public AutoPilotViewModel(FlightManagerModel flightManagerModel)
 {
     this.flightManagerModel = flightManagerModel;
 }
 public ConnectionViewModel(FlightManagerModel fmd)
 {
     this.flightManagerModel = fmd;
 }