Condividi tramite


UserInformation.AccountPictureChanged Evento

Definizione

Si verifica quando l'immagine o il nome dell'utente cambia.

Importante

La classe UserInformation non è supportata in Windows 10 o versioni successive. Usare invece la classe User . Vedere Osservazioni nella documentazione della classe UserInformation .

// Register
static event_token AccountPictureChanged(EventHandler<IInspectable> const& handler) const;

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

// Revoke with event_revoker
static UserInformation::AccountPictureChanged_revoker AccountPictureChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
/// [add: Windows.Foundation.Metadata.Deprecated("Use User instead of UserInformation. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.System.UserProfile.UserProfileContract")]
/// [remove: Windows.Foundation.Metadata.Deprecated("Use User instead of UserInformation. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.System.UserProfile.UserProfileContract")]
// Register
static event_token AccountPictureChanged(EventHandler<IInspectable> const& handler) const;

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

// Revoke with event_revoker
static UserInformation::AccountPictureChanged_revoker AccountPictureChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> AccountPictureChanged;
[add: Windows.Foundation.Metadata.Deprecated("Use User instead of UserInformation. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.System.UserProfile.UserProfileContract")]
[remove: Windows.Foundation.Metadata.Deprecated("Use User instead of UserInformation. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 131072, "Windows.System.UserProfile.UserProfileContract")]
public static event System.EventHandler<object> AccountPictureChanged;
function onAccountPictureChanged(eventArgs) { /* Your code */ }
Windows.System.UserProfile.UserInformation.addEventListener("accountpicturechanged", onAccountPictureChanged);
Windows.System.UserProfile.UserInformation.removeEventListener("accountpicturechanged", onAccountPictureChanged);
- or -
Windows.System.UserProfile.UserInformation.onaccountpicturechanged = onAccountPictureChanged;
Public Shared Custom Event AccountPictureChanged As EventHandler(Of Object) 

Tipo evento

Attributi

Commenti

Importante

La classe UserInformation non è supportata in Windows 10 o versioni successive. Usare invece la classe User . Vedere Osservazioni nella documentazione della classe UserInformation .

Usare questo evento per monitorare le modifiche apportate all'immagine dell'account dell'utente.

L'accesso a questo evento può essere bloccato dalle impostazioni di privacy. Se l'accesso è bloccato, la proprietà AccountPictureChangeEnabled sarà false.

Si applica a

Vedi anche