共用方式為


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) 

事件類型

適用於

另請參閱