次の方法で共有


RadialController.ControlLost イベント

定義

カスタム RadialController ツール (アプリによって定義) がアクティブで、 RadialController オブジェクトに関連付けられているアプリがバックグラウンドに送信されるか、ユーザーが RadialController メニューをアクティブ化している間に発生します。

// Register
event_token ControlLost(TypedEventHandler<RadialController, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
RadialController::ControlLost_revoker ControlLost(auto_revoke_t, TypedEventHandler<RadialController, IInspectable const&> const& handler) const;
public event TypedEventHandler<RadialController,object> ControlLost;
function onControlLost(eventArgs) { /* Your code */ }
radialController.addEventListener("controllost", onControlLost);
radialController.removeEventListener("controllost", onControlLost);
- or -
radialController.oncontrollost = onControlLost;
Public Custom Event ControlLost As TypedEventHandler(Of RadialController, Object) 

イベントの種類

適用対象

こちらもご覧ください