LockScreenInfo.DetailTextChanged 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.
Indica che il testo dei dettagli è stato modificato.
// Register
event_token DetailTextChanged(TypedEventHandler<LockScreenInfo, IInspectable const&> const& handler) const;
// Revoke with event_token
void DetailTextChanged(event_token const* cookie) const;
// Revoke with event_revoker
LockScreenInfo::DetailTextChanged_revoker DetailTextChanged(auto_revoke_t, TypedEventHandler<LockScreenInfo, IInspectable const&> const& handler) const;
public event TypedEventHandler<LockScreenInfo,object> DetailTextChanged;
function onDetailTextChanged(eventArgs) { /* Your code */ }
lockScreenInfo.addEventListener("detailtextchanged", onDetailTextChanged);
lockScreenInfo.removeEventListener("detailtextchanged", onDetailTextChanged);
- or -
lockScreenInfo.ondetailtextchanged = onDetailTextChanged;
Public Custom Event DetailTextChanged As TypedEventHandler(Of LockScreenInfo, Object)
Tipo evento
TypedEventHandler<LockScreenInfo,IInspectable>