WebViewControl.FrameNavigationCompleted Событие

Определение

Событие, которое активируется, когда фрейм в элементе управления завершает загрузку своего содержимого.

Дополнительные сведения см. в разделе Windows.Web.UI.IWebViewControl.

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

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

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

Тип события

Реализации

Применяется к