次の方法で共有


InputFocusController.GotFocus イベント

定義

関連付けられた ContentIsland が フォーカスを受け取ったときに発生します。

// Register
event_token GotFocus(TypedEventHandler<InputFocusController, FocusChangedEventArgs const&> const& handler) const;

// Revoke with event_token
void GotFocus(event_token const* cookie) const;

// Revoke with event_revoker
InputFocusController::GotFocus_revoker GotFocus(auto_revoke_t, TypedEventHandler<InputFocusController, FocusChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<InputFocusController,FocusChangedEventArgs> GotFocus;
function onGotFocus(eventArgs) { /* Your code */ }
inputFocusController.addEventListener("gotfocus", onGotFocus);
inputFocusController.removeEventListener("gotfocus", onGotFocus);
- or -
inputFocusController.ongotfocus = onGotFocus;
Public Custom Event GotFocus As TypedEventHandler(Of InputFocusController, FocusChangedEventArgs) 

イベントの種類

注釈

ContentIsland は、TrySetFocus メソッドを通じてフォーカスを受け取ることができます。または、フォーカスが他の場所から移動されるためです。 たとえば、 DesktopChildSiteBridge を使用してコンテンツをホストするアプリでは、ブリッジの HWND で SetFocus を呼び出してコンテンツに移動することがフォーカスであることを通知する必要があります。 その後、ブリッジは内部的に ContentIsland の基になる HWND にフォーカスを移動し、 GotFocus イベントが発生します。

Note

アプリの最上位 HWND にフォーカスがあり、非アクティブになった場合、フォーカスは失われ、HWND が再びアクティブになると戻りません。 代わりに、アクティブ化された最上位ウィンドウにフォーカスが設定され、HWND は GotFocus イベントを発生させません (たとえば、ユーザー Alt + Tab がアプリに戻る場合)。

この場合は、 手動で ContentIsland にフォーカスを設定する必要があります。 InputActivationListener は、ウィンドウがアクティブ化されたタイミングを判断するのに役立つイベントをサポートします。

適用対象

こちらもご覧ください