コード例 #1
0
 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;
 }
コード例 #4
0
 public ConnectionViewModel(FlightManagerModel fmd)
 {
     this.flightManagerModel = fmd;
 }