UserDeviceAssociation.UserDeviceAssociationChanged Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возникает при изменении пользователя, связанного с устройством.
// Register
static event_token UserDeviceAssociationChanged(EventHandler<UserDeviceAssociationChangedEventArgs> const& handler) const;
// Revoke with event_token
static void UserDeviceAssociationChanged(event_token const* cookie) const;
// Revoke with event_revoker
static UserDeviceAssociation::UserDeviceAssociationChanged_revoker UserDeviceAssociationChanged(auto_revoke_t, EventHandler<UserDeviceAssociationChangedEventArgs> const& handler) const;
public static event System.EventHandler<UserDeviceAssociationChangedEventArgs> UserDeviceAssociationChanged;
function onUserDeviceAssociationChanged(eventArgs) { /* Your code */ }
Windows.System.UserDeviceAssociation.addEventListener("userdeviceassociationchanged", onUserDeviceAssociationChanged);
Windows.System.UserDeviceAssociation.removeEventListener("userdeviceassociationchanged", onUserDeviceAssociationChanged);
- or -
Windows.System.UserDeviceAssociation.onuserdeviceassociationchanged = onUserDeviceAssociationChanged;
Public Shared Custom Event UserDeviceAssociationChanged As EventHandler(Of UserDeviceAssociationChangedEventArgs)