RefreshContainer.RefreshRequested Event

Definition

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) 

Event Type

Applies to