DisplayInformation.OrientationChanged イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
モードの変更またはモニターの変更により 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)
イベントの種類
TypedEventHandler<DisplayInformation,IInspectable>
注釈
OrientationChanged イベントは、ディスプレイまたはモニターの向きが変更された場合にのみ発生し、アプリの向きが変わるとは限りません。 レイアウト目的でアプリの向きを確認するには、 ApplicationView.Value プロパティを使用します。