VisualStateGroup.CurrentStateChanged 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 dopo che un controllo cambia in uno stato diverso.
public:
virtual event VisualStateChangedEventHandler ^ CurrentStateChanged;
// Register
event_token CurrentStateChanged(VisualStateChangedEventHandler const& handler) const;
// Revoke with event_token
void CurrentStateChanged(event_token const* cookie) const;
// Revoke with event_revoker
VisualStateGroup::CurrentStateChanged_revoker CurrentStateChanged(auto_revoke_t, VisualStateChangedEventHandler const& handler) const;
public event VisualStateChangedEventHandler CurrentStateChanged;
function onCurrentStateChanged(eventArgs) { /* Your code */ }
visualStateGroup.addEventListener("currentstatechanged", onCurrentStateChanged);
visualStateGroup.removeEventListener("currentstatechanged", onCurrentStateChanged);
- or -
visualStateGroup.oncurrentstatechanged = onCurrentStateChanged;
Public Custom Event CurrentStateChanged As VisualStateChangedEventHandler