InkToolbar.ActiveToolChanged 事件

定义

InkToolbarRadioButton 组中当前选定的功能发生更改时发生。 此事件提供对以下对象的访问:

此组中的功能互斥:选择功能会取消选择当前活动的功能。

注意

InkToolbarRulerButtonInkToolbarCustomToggleButton 对象与活动功能一起工作,并且不会向 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) 

事件类型

适用于

另请参阅