VisualStateGroup.CurrentStateChanging 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 un control comienza a cambiar a un estado diferente.
public:
virtual event VisualStateChangedEventHandler ^ CurrentStateChanging;
// Register
event_token CurrentStateChanging(VisualStateChangedEventHandler const& handler) const;
// Revoke with event_token
void CurrentStateChanging(event_token const* cookie) const;
// Revoke with event_revoker
VisualStateGroup::CurrentStateChanging_revoker CurrentStateChanging(auto_revoke_t, VisualStateChangedEventHandler const& handler) const;
public event VisualStateChangedEventHandler CurrentStateChanging;
function onCurrentStateChanging(eventArgs) { /* Your code */ }
visualStateGroup.addEventListener("currentstatechanging", onCurrentStateChanging);
visualStateGroup.removeEventListener("currentstatechanging", onCurrentStateChanging);
- or -
visualStateGroup.oncurrentstatechanging = onCurrentStateChanging;
Public Custom Event CurrentStateChanging As VisualStateChangedEventHandler