共用方式為


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) 

事件類型

適用於

另請參閱