WebViewControl.NavigationCompleted 이벤트

정의

컨트롤이 현재 콘텐츠 로드를 완료하거나 탐색에 실패한 경우 트리거되는 이벤트입니다.

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

// Register
event_token NavigationCompleted(TypedEventHandler<IWebViewControl, WebViewControlNavigationCompletedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
WebViewControl::NavigationCompleted_revoker NavigationCompleted(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlNavigationCompletedEventArgs> NavigationCompleted;
function onNavigationCompleted(eventArgs) { /* Your code */ }
webViewControl.addEventListener("navigationcompleted", onNavigationCompleted);
webViewControl.removeEventListener("navigationcompleted", onNavigationCompleted);
- or -
webViewControl.onnavigationcompleted = onNavigationCompleted;
Public Custom Event NavigationCompleted As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationCompletedEventArgs) Implements NavigationCompleted

이벤트 유형

구현

적용 대상