WebViewControl.LostFocus イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
WebViewControl がフォーカスを失ったときにアプリに通知します。 ユーザーが WebViewControl の内部または外部をクリックするか、プログラムによるフォーカスの変更 (WebViewControl または MoveFocus メソッド呼び出しではないウィンドウで SetFocus を呼び出すアプリなど) によって開始できます。
// Register
event_token LostFocus(TypedEventHandler<WebViewControl, IInspectable const&> const& handler) const;
// Revoke with event_token
void LostFocus(event_token const* cookie) const;
// Revoke with event_revoker
WebViewControl::LostFocus_revoker LostFocus(auto_revoke_t, TypedEventHandler<WebViewControl, IInspectable const&> const& handler) const;
public event TypedEventHandler<WebViewControl,object> LostFocus;
function onLostFocus(eventArgs) { /* Your code */ }
webViewControl.addEventListener("lostfocus", onLostFocus);
webViewControl.removeEventListener("lostfocus", onLostFocus);
- or -
webViewControl.onlostfocus = onLostFocus;
Public Custom Event LostFocus 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 の内部または外部をクリックした場合に発生する可能性があります。