DisplayInformation.OrientationChanged 事件

定义

CurrentOrientationNativeOrientation 属性由于模式更改或监视器更改而发生更改时发生。

// 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 属性。

适用于