VisualStateGroup.CurrentStateChanging Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando um controle começa a ser alterado para um 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