次の方法で共有


WebViewControl.FrameNavigationCompleted イベント

定義

コントロール内のフレームがコンテンツの読み込みを完了したときにトリガーされるイベント。

詳細については、「Windows.Web.UI.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
WebViewControl::FrameNavigationCompleted_revoker FrameNavigationCompleted(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlNavigationCompletedEventArgs> FrameNavigationCompleted;
function onFrameNavigationCompleted(eventArgs) { /* Your code */ }
webViewControl.addEventListener("framenavigationcompleted", onFrameNavigationCompleted);
webViewControl.removeEventListener("framenavigationcompleted", onFrameNavigationCompleted);
- or -
webViewControl.onframenavigationcompleted = onFrameNavigationCompleted;
Public Custom Event FrameNavigationCompleted As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationCompletedEventArgs) Implements FrameNavigationCompleted

イベントの種類

実装

適用対象