Joystick connection/disconnection event parameters
Inheritance: System.EventArgs
 static void JoystickDisconnected(object sender, JoystickConnectEventArgs e)
 {
     EventMgr.Notify (Event.JoystickDisconnected, e);
 }
Exemple #2
0
 void OnJoystickConnected(object sender, JoystickConnectEventArgs e)
 {
 }
Exemple #3
0
 /// <summary>
 /// Protected overridable handler that raises JoystickDisconnected event.
 /// </summary>
 protected virtual void OnJoystickDisconnected(JoystickConnectEventArgs args)
 {
     JoystickDisconnected?.Invoke(this, args);
 }