다음을 통해 공유


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) 

이벤트 유형

적용 대상

추가 정보