Partager via


AccountsSettingsPane.AccountCommandsRequested Événement

Définition

Se produit lorsque l’utilisateur ouvre le volet comptes. La gestion de cet événement permet à l’application d’initialiser les commandes des comptes et de suspendre son interface utilisateur jusqu’à ce que l’utilisateur ferme le volet.

// Register
event_token AccountCommandsRequested(TypedEventHandler<AccountsSettingsPane, AccountsSettingsPaneCommandsRequestedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
AccountsSettingsPane::AccountCommandsRequested_revoker AccountCommandsRequested(auto_revoke_t, TypedEventHandler<AccountsSettingsPane, AccountsSettingsPaneCommandsRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<AccountsSettingsPane,AccountsSettingsPaneCommandsRequestedEventArgs> AccountCommandsRequested;
function onAccountCommandsRequested(eventArgs) { /* Your code */ }
accountsSettingsPane.addEventListener("accountcommandsrequested", onAccountCommandsRequested);
accountsSettingsPane.removeEventListener("accountcommandsrequested", onAccountCommandsRequested);
- or -
accountsSettingsPane.onaccountcommandsrequested = onAccountCommandsRequested;
Public Custom Event AccountCommandsRequested As TypedEventHandler(Of AccountsSettingsPane, AccountsSettingsPaneCommandsRequestedEventArgs) 

Type d'événement

Remarques

Lorsque votre application gère cet événement, renseignez les accountsSettingsPaneCommandsRequestedEventArgs fournis avec vos objets SettingsCommand , vos objets CredentialCommand et vos objets WebAccountCommand pour les rendre disponibles pour l’interface utilisateur AccountsSettingsPane.

Si une erreur se produit lors de la modification du volet, les appels à Afficher échouent en mode silencieux et le volet n’apparaît pas.

S’applique à