次の方法で共有


WebViewControl.FrameNavigationStarting イベント

定義

コントロール内のフレームが新しいコンテンツに移動する前にトリガーされるイベント。

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

// Register
event_token FrameNavigationStarting(TypedEventHandler<IWebViewControl, WebViewControlNavigationStartingEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
WebViewControl::FrameNavigationStarting_revoker FrameNavigationStarting(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationStartingEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlNavigationStartingEventArgs> FrameNavigationStarting;
function onFrameNavigationStarting(eventArgs) { /* Your code */ }
webViewControl.addEventListener("framenavigationstarting", onFrameNavigationStarting);
webViewControl.removeEventListener("framenavigationstarting", onFrameNavigationStarting);
- or -
webViewControl.onframenavigationstarting = onFrameNavigationStarting;
Public Custom Event FrameNavigationStarting As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationStartingEventArgs) Implements FrameNavigationStarting

イベントの種類

実装

適用対象