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>