UISettings.ColorValuesChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when color values have changed.
// Register
event_token ColorValuesChanged(TypedEventHandler<UISettings, IInspectable const&> const& handler) const;
// Revoke with event_token
void ColorValuesChanged(event_token const* cookie) const;
// Revoke with event_revoker
UISettings::ColorValuesChanged_revoker ColorValuesChanged(auto_revoke_t, TypedEventHandler<UISettings, IInspectable const&> const& handler) const;
public event TypedEventHandler<UISettings,object> ColorValuesChanged;
function onColorValuesChanged(eventArgs) { /* Your code */ }
uISettings.addEventListener("colorvalueschanged", onColorValuesChanged);
uISettings.removeEventListener("colorvalueschanged", onColorValuesChanged);
- or -
uISettings.oncolorvalueschanged = onColorValuesChanged;
Public Custom Event ColorValuesChanged As TypedEventHandler(Of UISettings, Object)
Event Type
TypedEventHandler<UISettings,IInspectable>