LockScreenInfo.DetailTextChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Indique que le texte détaillé a changé.
// 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)
Type d'événement
TypedEventHandler<LockScreenInfo,IInspectable>