ArcadeStick.ArcadeStickRemoved É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 stick d’arcade est déconnecté.
// Register
static event_token ArcadeStickRemoved(EventHandler<ArcadeStick> const& handler) const;
// Revoke with event_token
static void ArcadeStickRemoved(event_token const* cookie) const;
// Revoke with event_revoker
static ArcadeStick::ArcadeStickRemoved_revoker ArcadeStickRemoved(auto_revoke_t, EventHandler<ArcadeStick> const& handler) const;
public static event System.EventHandler<ArcadeStick> ArcadeStickRemoved;
function onArcadeStickRemoved(eventArgs) { /* Your code */ }
Windows.Gaming.Input.ArcadeStick.addEventListener("arcadestickremoved", onArcadeStickRemoved);
Windows.Gaming.Input.ArcadeStick.removeEventListener("arcadestickremoved", onArcadeStickRemoved);
- or -
Windows.Gaming.Input.ArcadeStick.onarcadestickremoved = onArcadeStickRemoved;
Public Shared Custom Event ArcadeStickRemoved As EventHandler(Of ArcadeStick)