UISettings.AnimationsEnabledChanged 事件

定义

AnimationsEnabled 属性的值发生更改时发生。

// 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) 

事件类型

Windows 要求

设备系列
Windows 10, version 2004 (在 10.0.19041.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v10.0 中引入)

适用于