CoreTextEditContext.NotifyFocusLeaveCompleted Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica dopo che lo stato attivo ha lasciato il controllo input di testo.
// Register
event_token NotifyFocusLeaveCompleted(TypedEventHandler<CoreTextEditContext, IInspectable const&> const& handler) const;
// Revoke with event_token
void NotifyFocusLeaveCompleted(event_token const* cookie) const;
// Revoke with event_revoker
CoreTextEditContext::NotifyFocusLeaveCompleted_revoker NotifyFocusLeaveCompleted(auto_revoke_t, TypedEventHandler<CoreTextEditContext, IInspectable const&> const& handler) const;
public event TypedEventHandler<CoreTextEditContext,object> NotifyFocusLeaveCompleted;
function onNotifyFocusLeaveCompleted(eventArgs) { /* Your code */ }
coreTextEditContext.addEventListener("notifyfocusleavecompleted", onNotifyFocusLeaveCompleted);
coreTextEditContext.removeEventListener("notifyfocusleavecompleted", onNotifyFocusLeaveCompleted);
- or -
coreTextEditContext.onnotifyfocusleavecompleted = onNotifyFocusLeaveCompleted;
Public Custom Event NotifyFocusLeaveCompleted As TypedEventHandler(Of CoreTextEditContext, Object)
Tipo evento
Requisiti Windows
Famiglia di dispositivi |
Windows 10 (è stato introdotto in 10.0.10586.0)
|
API contract |
Windows.Foundation.UniversalApiContract (è stato introdotto in v2.0)
|