Partager via


InkToolbar.ActiveToolChanged Événement

Définition

Se produit lorsque la fonctionnalité actuellement sélectionnée dans le groupe RadioButtond’InkToolbar est modifiée. Cet événement permet d’accéder aux objets suivants :

Les fonctionnalités de ce groupe s’excluent mutuellement : la sélection d’une fonctionnalité désélectionne la fonctionnalité actuellement active.

Notes

Les objets InkToolbarRulerButton et InkToolbarCustomToggleButton fonctionnent conjointement avec la fonctionnalité active et ne sont pas exposés à l’événement ActiveToolChanged.

// Register
event_token ActiveToolChanged(TypedEventHandler<InkToolbar, IInspectable const&> const& handler) const;

// Revoke with event_token
void ActiveToolChanged(event_token const* cookie) const;

// Revoke with event_revoker
InkToolbar::ActiveToolChanged_revoker ActiveToolChanged(auto_revoke_t, TypedEventHandler<InkToolbar, IInspectable const&> const& handler) const;
public event TypedEventHandler<InkToolbar,object> ActiveToolChanged;
function onActiveToolChanged(eventArgs) { /* Your code */ }
inkToolbar.addEventListener("activetoolchanged", onActiveToolChanged);
inkToolbar.removeEventListener("activetoolchanged", onActiveToolChanged);
- or -
inkToolbar.onactivetoolchanged = onActiveToolChanged;
Public Custom Event ActiveToolChanged As TypedEventHandler(Of InkToolbar, Object) 

Type d'événement

S’applique à

Voir aussi