IWebViewControl.FrameContentLoading 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于 IWebViewControl 中的框架完成剖析其目前的 HTML 內容時。
// Register
event_token FrameContentLoading(TypedEventHandler<IWebViewControl, WebViewControlContentLoadingEventArgs const&> const& handler) const;
// Revoke with event_token
void FrameContentLoading(event_token const* cookie) const;
// Revoke with event_revoker
IWebViewControl::FrameContentLoading_revoker FrameContentLoading(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlContentLoadingEventArgs const&> const& handler) const;
event TypedEventHandler<IWebViewControl,WebViewControlContentLoadingEventArgs> FrameContentLoading;
function onFrameContentLoading(eventArgs) { /* Your code */ }
iWebViewControl.addEventListener("framecontentloading", onFrameContentLoading);
iWebViewControl.removeEventListener("framecontentloading", onFrameContentLoading);
- or -
iWebViewControl.onframecontentloading = onFrameContentLoading;
Event FrameContentLoading As TypedEventHandler(Of IWebViewControl, WebViewControlContentLoadingEventArgs)
事件類型
備註
WebView 流覽事件會依下列順序發生:
- NavigationStarting
- ContentLoading
- DOMContentLoaded
- NavigationCompleted
WebView 內容中每個 iframe 的類似事件會以相同順序發生:
- FrameNavigationStarting
- FrameContentLoading
- FrameDOMContentLoaded
- FrameNavigationCompleted