Frame.NavigationStopped É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.
Survient lorsque
une nouvelle navigation est demandée pendant qu’une navigation actuelle est en cours.
public:
virtual event NavigationStoppedEventHandler ^ NavigationStopped;
// Register
event_token NavigationStopped(NavigationStoppedEventHandler const& handler) const;
// Revoke with event_token
void NavigationStopped(event_token const* cookie) const;
// Revoke with event_revoker
Frame::NavigationStopped_revoker NavigationStopped(auto_revoke_t, NavigationStoppedEventHandler const& handler) const;
public event NavigationStoppedEventHandler NavigationStopped;
function onNavigationStopped(eventArgs) { /* Your code */ }
frame.addEventListener("navigationstopped", onNavigationStopped);
frame.removeEventListener("navigationstopped", onNavigationStopped);
- or -
frame.onnavigationstopped = onNavigationStopped;
Public Custom Event NavigationStopped As NavigationStoppedEventHandler
<Frame NavigationStopped="eventhandler" />