UISettings.AnimationsEnabledChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando el valor de la propiedad AnimationsEnabled ha cambiado.
// Register
event_token AnimationsEnabledChanged(TypedEventHandler<UISettings, UISettingsAnimationsEnabledChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void AnimationsEnabledChanged(event_token const* cookie) const;
// Revoke with event_revoker
UISettings::AnimationsEnabledChanged_revoker AnimationsEnabledChanged(auto_revoke_t, TypedEventHandler<UISettings, UISettingsAnimationsEnabledChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<UISettings,UISettingsAnimationsEnabledChangedEventArgs> AnimationsEnabledChanged;
function onAnimationsEnabledChanged(eventArgs) { /* Your code */ }
uISettings.addEventListener("animationsenabledchanged", onAnimationsEnabledChanged);
uISettings.removeEventListener("animationsenabledchanged", onAnimationsEnabledChanged);
- or -
uISettings.onanimationsenabledchanged = onAnimationsEnabledChanged;
Public Custom Event AnimationsEnabledChanged As TypedEventHandler(Of UISettings, UISettingsAnimationsEnabledChangedEventArgs)
Tipo de evento
Requisitos de Windows
Familia de dispositivos |
Windows 10, version 2004 (se introdujo en la versión 10.0.19041.0)
|
API contract |
Windows.Foundation.UniversalApiContract (se introdujo en la versión v10.0)
|