IWebViewControl.ScriptNotify 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于 IWebViewControl 中包含的內容使用 JavaScript 將字串傳遞至應用程式時。
// 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
IWebViewControl::ScriptNotify_revoker ScriptNotify(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlScriptNotifyEventArgs const&> const& handler) const;
event TypedEventHandler<IWebViewControl,WebViewControlScriptNotifyEventArgs> ScriptNotify;
function onScriptNotify(eventArgs) { /* Your code */ }
iWebViewControl.addEventListener("scriptnotify", onScriptNotify);
iWebViewControl.removeEventListener("scriptnotify", onScriptNotify);
- or -
iWebViewControl.onscriptnotify = onScriptNotify;
Event ScriptNotify As TypedEventHandler(Of IWebViewControl, WebViewControlScriptNotifyEventArgs)
事件類型
備註
當頁面呼叫window.external.notify並傳遞字串參數時,裝載的 HTML 頁面可以在 UWP 應用程式中引發ScriptNotify事件。