WebViewControl.GotFocus 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
由于用户在 WebViewControl) 内部/外部单击,WebViewControl 收到焦点 (时通知应用。 使用 WebViewControl.MoveFocus 方法与 LostFocus 事件和编程焦点更改结合使用。
// Register
event_token GotFocus(TypedEventHandler<WebViewControl, IInspectable const&> const& handler) const;
// Revoke with event_token
void GotFocus(event_token const* cookie) const;
// Revoke with event_revoker
WebViewControl::GotFocus_revoker GotFocus(auto_revoke_t, TypedEventHandler<WebViewControl, IInspectable const&> const& handler) const;
public event TypedEventHandler<WebViewControl,object> GotFocus;
function onGotFocus(eventArgs) { /* Your code */ }
webViewControl.addEventListener("gotfocus", onGotFocus);
webViewControl.removeEventListener("gotfocus", onGotFocus);
- or -
webViewControl.ongotfocus = onGotFocus;
Public Custom Event GotFocus As TypedEventHandler(Of WebViewControl, Object)
事件类型
TypedEventHandler<WebViewControl,IInspectable>
Windows 要求
设备系列 |
Windows 10, version 1809 (在 10.0.17763.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v7.0 中引入)
|
示例
以下 C# 示例演示将 GotFocus 和 LostFocus 与 WebViewControl 配合使用的事件:
WebViewControl webViewControl;
void WebViewControlGotFocus(WebViewControl sender, IInspectable args)
{
AddFocusHighlightToElement(sender);
}
void WebViewControlLostFocus(WebViewControl sender, IInspectable args)
{
RemoveFocusHighlightFromElement(sender);
}
webViewControl.GotFocus += WebViewControlGotFocus;
webViewControl.LostFocus += WebViewControlLostFocus
GotFocus 和 LostFocus 事件在 WebViewControl 接收或失去焦点时告知应用。 这可能是由于调用 MoveFocus,或用户单击 WebViewControl 内部/外部。