Frame.NavigationStopped イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在のナビゲーションの進行中に新しいナビゲーションが要求されたときに発生します。
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" />