RadialControllerMenuItem.Invoked 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从 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)
事件类型
TypedEventHandler<RadialControllerMenuItem,IInspectable>