次の方法で共有


IWebViewControl.FrameNavigationCompleted イベント

定義

IWebViewControl 内のフレームがコンテンツの読み込みを完了したときに発生します。

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

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

// Revoke with event_revoker
IWebViewControl::FrameNavigationCompleted_revoker FrameNavigationCompleted(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationCompletedEventArgs const&> const& handler) const;
event TypedEventHandler<IWebViewControl,WebViewControlNavigationCompletedEventArgs> FrameNavigationCompleted;
function onFrameNavigationCompleted(eventArgs) { /* Your code */ }
iWebViewControl.addEventListener("framenavigationcompleted", onFrameNavigationCompleted);
iWebViewControl.removeEventListener("framenavigationcompleted", onFrameNavigationCompleted);
- or -
iWebViewControl.onframenavigationcompleted = onFrameNavigationCompleted;
Event FrameNavigationCompleted As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationCompletedEventArgs) 

イベントの種類

注釈

WebView ナビゲーション イベントは、次の順序で発生します。

同様のイベントは、WebView コンテンツ内の iframe ごとに同じ順序で発生します。

適用対象