IWebViewControl.FrameNavigationStarting 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生在 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
IWebViewControl::FrameNavigationStarting_revoker FrameNavigationStarting(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationStartingEventArgs const&> const& handler) const;
event TypedEventHandler<IWebViewControl,WebViewControlNavigationStartingEventArgs> FrameNavigationStarting;
function onFrameNavigationStarting(eventArgs) { /* Your code */ }
iWebViewControl.addEventListener("framenavigationstarting", onFrameNavigationStarting);
iWebViewControl.removeEventListener("framenavigationstarting", onFrameNavigationStarting);
- or -
iWebViewControl.onframenavigationstarting = onFrameNavigationStarting;
Event FrameNavigationStarting As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationStartingEventArgs)
事件類型
備註
WebView 流覽事件會依下列順序發生:
- NavigationStarting
- ContentLoading
- DOMContentLoaded
- NavigationCompleted
WebView 內容中每個 iframe 的類似事件會以相同順序發生:
- FrameNavigationStarting
- FrameContentLoading
- FrameDOMContentLoaded
- FrameNavigationCompleted