WebViewControl.ScriptNotify 事件

定义

当控件中包含的内容使用 window.external.notify将字符串传递给应用时触发的事件。

有关详细信息,请参阅 Windows.Web.UI.IWebViewControl

// Register
event_token ScriptNotify(TypedEventHandler<IWebViewControl, WebViewControlScriptNotifyEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
WebViewControl::ScriptNotify_revoker ScriptNotify(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlScriptNotifyEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlScriptNotifyEventArgs> ScriptNotify;
function onScriptNotify(eventArgs) { /* Your code */ }
webViewControl.addEventListener("scriptnotify", onScriptNotify);
webViewControl.removeEventListener("scriptnotify", onScriptNotify);
- or -
webViewControl.onscriptnotify = onScriptNotify;
Public Custom Event ScriptNotify As TypedEventHandler(Of IWebViewControl, WebViewControlScriptNotifyEventArgs) Implements ScriptNotify

事件类型

实现

适用于

另请参阅