/// <summary>
 /// Fired on InputStatusChanged to enable/disable the menus.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 void OnInputStatusChanged( object sender, DroneInputStatus e )
 {
     this.updateMenusStatus();
 }
 private void OnInputStatusChanged( DroneInputStatus droneInputStatus )
 {
     if( InputStatusChanged != null )
     {
         InputStatusChanged( this, this.InputStatus );
     }
 }
Exemplo n.º 3
0
 private void OnInputStatusChanged( object sender, DroneInputStatus e )
 {
     _inputStatusInfo = _inputController.InputStatusString;
     this.OnNotifyPropertyChange( "InputStatusInfo" );
     this.OnNotifyPropertyChange( "InputControlVisibility" );
 }