RefreshContainer.RefreshRequested Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsqu’une mise à jour du contenu a été lancée.
API WinUI 2 équivalente pour UWP : Microsoft.UI.Xaml.Controls.RefreshContainer.RefreshRequested (pour WinUI dans le SDK d'application Windows, consultez les espaces de noms SDK d'application Windows).
// Register
event_token RefreshRequested(TypedEventHandler<RefreshContainer, RefreshRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void RefreshRequested(event_token const* cookie) const;
// Revoke with event_revoker
RefreshContainer::RefreshRequested_revoker RefreshRequested(auto_revoke_t, TypedEventHandler<RefreshContainer, RefreshRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<RefreshContainer,RefreshRequestedEventArgs> RefreshRequested;
function onRefreshRequested(eventArgs) { /* Your code */ }
refreshContainer.addEventListener("refreshrequested", onRefreshRequested);
refreshContainer.removeEventListener("refreshrequested", onRefreshRequested);
- or -
refreshContainer.onrefreshrequested = onRefreshRequested;
Public Custom Event RefreshRequested As TypedEventHandler(Of RefreshContainer, RefreshRequestedEventArgs)