다음을 통해 공유


WebUIView.FrameNavigationStarting 이벤트

정의

보기가 새 콘텐츠로 이동하기 직전에 발생합니다.

// 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
WebUIView::FrameNavigationStarting_revoker FrameNavigationStarting(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationStartingEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlNavigationStartingEventArgs> FrameNavigationStarting;
function onFrameNavigationStarting(eventArgs) { /* Your code */ }
webUIView.addEventListener("framenavigationstarting", onFrameNavigationStarting);
webUIView.removeEventListener("framenavigationstarting", onFrameNavigationStarting);
- or -
webUIView.onframenavigationstarting = onFrameNavigationStarting;
Public Custom Event FrameNavigationStarting As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationStartingEventArgs) Implements FrameNavigationStarting

이벤트 유형

구현

적용 대상