Share via


WebViewControl.FrameContentLoading 이벤트

정의

컨트롤의 프레임이 현재 HTML 콘텐츠 구문 분석을 완료했을 때 트리거되는 이벤트입니다.

자세한 내용은 Windows.Web.UI.IWebViewControl을 참조하세요.

// 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
WebViewControl::FrameContentLoading_revoker FrameContentLoading(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlContentLoadingEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlContentLoadingEventArgs> FrameContentLoading;
function onFrameContentLoading(eventArgs) { /* Your code */ }
webViewControl.addEventListener("framecontentloading", onFrameContentLoading);
webViewControl.removeEventListener("framecontentloading", onFrameContentLoading);
- or -
webViewControl.onframecontentloading = onFrameContentLoading;
Public Custom Event FrameContentLoading As TypedEventHandler(Of IWebViewControl, WebViewControlContentLoadingEventArgs) Implements FrameContentLoading

이벤트 유형

구현

적용 대상