Share via


RadialControllerMenuItem.Invoked 事件

定义

RadialController 菜单中选择自定义工具时发生。

// Register
event_token Invoked(TypedEventHandler<RadialControllerMenuItem, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
RadialControllerMenuItem::Invoked_revoker Invoked(auto_revoke_t, TypedEventHandler<RadialControllerMenuItem, IInspectable const&> const& handler) const;
public event TypedEventHandler<RadialControllerMenuItem,object> Invoked;
function onInvoked(eventArgs) { /* Your code */ }
radialControllerMenuItem.addEventListener("invoked", onInvoked);
radialControllerMenuItem.removeEventListener("invoked", onInvoked);
- or -
radialControllerMenuItem.oninvoked = onInvoked;
Public Custom Event Invoked As TypedEventHandler(Of RadialControllerMenuItem, Object) 

事件类型

适用于

另请参阅