WebViewControl.NavigationCompleted イベント

定義

コントロールが現在のコンテンツの読み込みを完了したとき、またはナビゲーションが失敗した場合にトリガーされるイベント。

詳細については、「Windows.Web.UI.IWebViewControl」を参照してください。

// Register
event_token NavigationCompleted(TypedEventHandler<IWebViewControl, WebViewControlNavigationCompletedEventArgs const&> const& handler) const;

// Revoke with event_token
void NavigationCompleted(event_token const* cookie) const;

// Revoke with event_revoker
WebViewControl::NavigationCompleted_revoker NavigationCompleted(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlNavigationCompletedEventArgs> NavigationCompleted;
function onNavigationCompleted(eventArgs) { /* Your code */ }
webViewControl.addEventListener("navigationcompleted", onNavigationCompleted);
webViewControl.removeEventListener("navigationcompleted", onNavigationCompleted);
- or -
webViewControl.onnavigationcompleted = onNavigationCompleted;
Public Custom Event NavigationCompleted As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationCompletedEventArgs) Implements NavigationCompleted

イベントの種類

実装

適用対象