RacingWheel.RacingWheelAdded Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Signals when a new racing wheel is connected.
// 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)
Event Type
Remarks
To identify racing wheels that have already been added, you query the list of connected racing wheels using RacingWheel.RacingWheels.