ArcadeStick.ArcadeStickRemoved Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Indica cuándo se desconecta un stick arcade.
// 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)