RadialController.ButtonReleased Event

Definition

Occurs when the wheel device is pressed and then released.

// Register
event_token ButtonReleased(TypedEventHandler<RadialController, RadialControllerButtonReleasedEventArgs const&> const& handler) const;

// Revoke with event_token
void ButtonReleased(event_token const* cookie) const;

// Revoke with event_revoker
RadialController::ButtonReleased_revoker ButtonReleased(auto_revoke_t, TypedEventHandler<RadialController, RadialControllerButtonReleasedEventArgs const&> const& handler) const;
public event TypedEventHandler<RadialController,RadialControllerButtonReleasedEventArgs> ButtonReleased;
function onButtonReleased(eventArgs) { /* Your code */ }
radialController.addEventListener("buttonreleased", onButtonReleased);
radialController.removeEventListener("buttonreleased", onButtonReleased);
- or -
radialController.onbuttonreleased = onButtonReleased;
Public Custom Event ButtonReleased As TypedEventHandler(Of RadialController, RadialControllerButtonReleasedEventArgs) 

Event Type

Windows requirements

Device family
Windows 10 Creators Update (introduced in 10.0.15063.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v4.0)

Applies to

See also