WebUIView.FrameContentLoading Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Происходит, когда кадр в представлении начинает загрузку нового содержимого.
// 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
WebUIView::FrameContentLoading_revoker FrameContentLoading(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlContentLoadingEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlContentLoadingEventArgs> FrameContentLoading;
function onFrameContentLoading(eventArgs) { /* Your code */ }
webUIView.addEventListener("framecontentloading", onFrameContentLoading);
webUIView.removeEventListener("framecontentloading", onFrameContentLoading);
- or -
webUIView.onframecontentloading = onFrameContentLoading;
Public Custom Event FrameContentLoading As TypedEventHandler(Of IWebViewControl, WebViewControlContentLoadingEventArgs) Implements FrameContentLoading