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# サンプルは、WebViewControl で GotFocus と LostFocus を使用するイベントを示しています。
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 の内部または外部をクリックした場合に発生する可能性があります。