Gamepad.GamepadRemoved Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Signale quand un boîtier de commande est déconnecté.
// Register
static event_token GamepadRemoved(EventHandler<Gamepad> const& handler) const;
// Revoke with event_token
static void GamepadRemoved(event_token const* cookie) const;
// Revoke with event_revoker
static Gamepad::GamepadRemoved_revoker GamepadRemoved(auto_revoke_t, EventHandler<Gamepad> const& handler) const;
public static event System.EventHandler<Gamepad> GamepadRemoved;
function onGamepadRemoved(eventArgs) { /* Your code */ }
Windows.Gaming.Input.Gamepad.addEventListener("gamepadremoved", onGamepadRemoved);
Windows.Gaming.Input.Gamepad.removeEventListener("gamepadremoved", onGamepadRemoved);
- or -
Windows.Gaming.Input.Gamepad.ongamepadremoved = onGamepadRemoved;
Public Shared Custom Event GamepadRemoved As EventHandler(Of Gamepad)