次の方法で共有


CoreTextEditContext.FocusRemoved イベント

定義

テキスト入力コントロールからフォーカスが強制的に削除されたときに発生します。 アプリケーションは、テキスト入力コントロールのフォーカスを適切に削除するために、このイベントを処理する必要があります。

// Register
event_token FocusRemoved(TypedEventHandler<CoreTextEditContext, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
CoreTextEditContext::FocusRemoved_revoker FocusRemoved(auto_revoke_t, TypedEventHandler<CoreTextEditContext, IInspectable const&> const& handler) const;
public event TypedEventHandler<CoreTextEditContext,object> FocusRemoved;
function onFocusRemoved(eventArgs) { /* Your code */ }
coreTextEditContext.addEventListener("focusremoved", onFocusRemoved);
coreTextEditContext.removeEventListener("focusremoved", onFocusRemoved);
- or -
coreTextEditContext.onfocusremoved = onFocusRemoved;
Public Custom Event FocusRemoved As TypedEventHandler(Of CoreTextEditContext, Object) 

イベントの種類

適用対象