Compartir a través de


WebViewControl.FrameNavigationCompleted Evento

Definición

Evento que se desencadena cuando un fotograma del control ha terminado de cargar su contenido.

Para obtener más información, consulta 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

Tipo de evento

Implementaciones

Se aplica a