VisualStateGroup.CurrentStateChanging Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsqu’un contrôle commence à passer à un état différent.
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