Поделиться через


DisplayInformation.OrientationChanged Событие

Определение

Происходит при изменении свойства CurrentOrientation или NativeOrientation из-за изменения режима или изменения монитора.

// Register
event_token OrientationChanged(TypedEventHandler<DisplayInformation, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
DisplayInformation::OrientationChanged_revoker OrientationChanged(auto_revoke_t, TypedEventHandler<DisplayInformation, IInspectable const&> const& handler) const;
public event TypedEventHandler<DisplayInformation,object> OrientationChanged;
function onOrientationChanged(eventArgs) { /* Your code */ }
displayInformation.addEventListener("orientationchanged", onOrientationChanged);
displayInformation.removeEventListener("orientationchanged", onOrientationChanged);
- or -
displayInformation.onorientationchanged = onOrientationChanged;
Public Custom Event OrientationChanged As TypedEventHandler(Of DisplayInformation, Object) 

Тип события

Комментарии

Событие OrientationChanged возникает только при изменении ориентации дисплея или монитора и не обязательно при изменении ориентации приложения. Чтобы определить ориентацию приложения в целях макета, используйте свойство ApplicationView.Value .

Применяется к