DesktopWindowXamlSource.GotFocus イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
DesktopWindowXamlSource がデスクトップ アプリケーションでフォーカスを取得したときに発生します (たとえば、DesktopWindowXamlSource の直前の要素にフォーカスがあるときに、ユーザーが Tab キーを押します)。
// Register
event_token GotFocus(TypedEventHandler<DesktopWindowXamlSource, DesktopWindowXamlSourceGotFocusEventArgs const&> const& handler) const;
// Revoke with event_token
void GotFocus(event_token const* cookie) const;
// Revoke with event_revoker
DesktopWindowXamlSource::GotFocus_revoker GotFocus(auto_revoke_t, TypedEventHandler<DesktopWindowXamlSource, DesktopWindowXamlSourceGotFocusEventArgs const&> const& handler) const;
public event TypedEventHandler<DesktopWindowXamlSource,DesktopWindowXamlSourceGotFocusEventArgs> GotFocus;
function onGotFocus(eventArgs) { /* Your code */ }
desktopWindowXamlSource.addEventListener("gotfocus", onGotFocus);
desktopWindowXamlSource.removeEventListener("gotfocus", onGotFocus);
- or -
desktopWindowXamlSource.ongotfocus = onGotFocus;
Public Custom Event GotFocus As TypedEventHandler(Of DesktopWindowXamlSource, DesktopWindowXamlSourceGotFocusEventArgs)
イベントの種類
注釈
DesktopWindowXamlSource をデスクトップ アプリケーションに追加すると、既定では、DesktopWindowXamlSource は Tab キーや方向キーなどのキーボード イベントによるフォーカス ナビゲーションを自動的に処理しません。 NavigateFocus メソッドを呼び出して、ユーザーが DesktopWindowXamlSource に移動したときにプログラムでフォーカスを設定します。
ユーザーがキーボード以外のイベント (マウス クリックなど) を使用して DesktopWindowXamlSource に入ったときに通知を受け取る GotFocus イベントを処理し、ホスト デスクトップ アプリケーションの UI の状態を最新の状態に保ちます。