RefreshContainer.RefreshRequested 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.
Occurs when an update of the content has been initiated.
Equivalent WinUI 2 API for UWP: Microsoft.UI.Xaml.Controls.RefreshContainer.RefreshRequested (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).
// 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)