Compartir a través de


RacingWheel.RacingWheelAdded Evento

Definición

Indica cuándo se conecta un nuevo volante.

// Register
static event_token RacingWheelAdded(EventHandler<RacingWheel> const& handler) const;

// Revoke with event_token
static void RacingWheelAdded(event_token const* cookie) const;

// Revoke with event_revoker
static RacingWheel::RacingWheelAdded_revoker RacingWheelAdded(auto_revoke_t, EventHandler<RacingWheel> const& handler) const;
public static event System.EventHandler<RacingWheel> RacingWheelAdded;
function onRacingWheelAdded(eventArgs) { /* Your code */ }
Windows.Gaming.Input.RacingWheel.addEventListener("racingwheeladded", onRacingWheelAdded);
Windows.Gaming.Input.RacingWheel.removeEventListener("racingwheeladded", onRacingWheelAdded);
- or -
Windows.Gaming.Input.RacingWheel.onracingwheeladded = onRacingWheelAdded;
Public Shared Custom Event RacingWheelAdded As EventHandler(Of RacingWheel) 

Tipo de evento

Comentarios

Para identificar los volantes que ya se han agregado, consulta la lista de volantes conectados mediante RacingWheel.RacingWheels.

Se aplica a