CoreWindowResizeManager クラス

定義

CoreWindow.SizeChanged イベントの管理に使用する型を定義します。 この型は、フレームワーク (XAML など) または独自の IFrameWorkView を実装するアプリによって使用され、シェル描画されたプラクホルダー (スプラッシュ スクリーンなど) とアプリの最初に描画されたフレームとの間でハンドオーバーを同期し、一方から他方への切り替えにギャップがないようにします。 アプリで IFrameWorkView 自体が実装されていない場合は、フレームワークによって自動的に行われるので、この同期に参加しないでください。

public ref class CoreWindowResizeManager sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class CoreWindowResizeManager final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class CoreWindowResizeManager
Public NotInheritable Class CoreWindowResizeManager
継承
Object Platform::Object IInspectable CoreWindowResizeManager
属性

Windows の要件

デバイス ファミリ
Windows 10 (10.0.10240.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v1.0 で導入)

注釈

CoreWindow.SizeChanged が発生したら、静的 CoreWindowResizeManager.GetForCurrentView メソッドを呼び出して、現在の CoreWindow のこの型のインスタンスを取得します。

if (m_windowSizeChangeInProgress)
{
    // A window size change has been initiated and the app has just completed presenting
    // the first frame with the new size. Notify the resize manager so that we can abbreviate
    // any resize animation and prevent unnecessary delays.
    Windows::UI::Core::CoreWindowResizeManager::GetForCurrentView().NotifyLayoutCompleted();
    m_windowSizeChangeInProgress = false;
}
if (m_windowSizeChangeInProgress)
{
 // A window size change has been initiated and the app has just completed presenting
 // the first frame with the new size. Notify the resize manager so we can abbreviate
 // any resize animation and prevent unnecessary delays.
 CoreWindowResizeManager::GetForCurrentView()->NotifyLayoutCompleted();
 m_windowSizeChangeInProgress = false;
}

プロパティ

ShouldWaitForLayoutCompletion

呼び出し元が新しいレイアウトの完了を待機する必要があるかどうかを取得または設定します。

メソッド

GetForCurrentView()

実行中のアプリの現在の CoreWindow の CoreWindowResizeManager のインスタンス 取得します。

NotifyLayoutCompleted()

CoreWindow オブジェクトに、新しいレイアウトが完了したことを通知します。

適用対象