VisualStateGroup.CurrentStateChanging Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando un controllo inizia a cambiare stato.
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