UISettings.ColorValuesChanged 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 los valores de color han cambiado.
// 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)
Tipo de evento
TypedEventHandler<UISettings,IInspectable>