RadialController.RotationChanged 이벤트

정의

사용자 지정 RadialController 도구가 활성화된 동안 휠 디바이스가 회전될 때 발생합니다.

다음과 같은 경우 앱에서 이 이벤트를 수신하지 않습니다.

  • RadialController 메뉴가 활성화되어 있습니다.
  • 기본 제공 도구가 활성화되어 있습니다.
// Register
event_token RotationChanged(TypedEventHandler<RadialController, RadialControllerRotationChangedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
RadialController::RotationChanged_revoker RotationChanged(auto_revoke_t, TypedEventHandler<RadialController, RadialControllerRotationChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<RadialController,RadialControllerRotationChangedEventArgs> RotationChanged;
function onRotationChanged(eventArgs) { /* Your code */ }
radialController.addEventListener("rotationchanged", onRotationChanged);
radialController.removeEventListener("rotationchanged", onRotationChanged);
- or -
radialController.onrotationchanged = onRotationChanged;
Public Custom Event RotationChanged As TypedEventHandler(Of RadialController, RadialControllerRotationChangedEventArgs) 

이벤트 유형

적용 대상

추가 정보