UISettings.MessageDurationChanged 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 quando il valore della proprietà MessageDuration è stato modificato.
// Register
event_token MessageDurationChanged(TypedEventHandler<UISettings, UISettingsMessageDurationChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void MessageDurationChanged(event_token const* cookie) const;
// Revoke with event_revoker
UISettings::MessageDurationChanged_revoker MessageDurationChanged(auto_revoke_t, TypedEventHandler<UISettings, UISettingsMessageDurationChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<UISettings,UISettingsMessageDurationChangedEventArgs> MessageDurationChanged;
function onMessageDurationChanged(eventArgs) { /* Your code */ }
uISettings.addEventListener("messagedurationchanged", onMessageDurationChanged);
uISettings.removeEventListener("messagedurationchanged", onMessageDurationChanged);
- or -
uISettings.onmessagedurationchanged = onMessageDurationChanged;
Public Custom Event MessageDurationChanged As TypedEventHandler(Of UISettings, UISettingsMessageDurationChangedEventArgs)
Tipo evento
Requisiti Windows
Famiglia di dispositivi |
Windows 10, version 2004 (è stato introdotto in 10.0.19041.0)
|
API contract |
Windows.Foundation.UniversalApiContract (è stato introdotto in v10.0)
|