Gamepad.UserChanged 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 the user associated with the gamepad has changed.
// Register
event_token UserChanged(TypedEventHandler<IGameController, UserChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void UserChanged(event_token const* cookie) const;
// Revoke with event_revoker
Gamepad::UserChanged_revoker UserChanged(auto_revoke_t, TypedEventHandler<IGameController, UserChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<IGameController,UserChangedEventArgs> UserChanged;
function onUserChanged(eventArgs) { /* Your code */ }
gamepad.addEventListener("userchanged", onUserChanged);
gamepad.removeEventListener("userchanged", onUserChanged);
- or -
gamepad.onuserchanged = onUserChanged;
Public Custom Event UserChanged As TypedEventHandler(Of IGameController, UserChangedEventArgs) Implements UserChanged