Window.SizeToContent プロパティ

定義

ウィンドウのサイズがコンテンツのサイズに合わせて自動的に調整されるかどうかを示す値を取得または設定します。

public:
 property System::Windows::SizeToContent SizeToContent { System::Windows::SizeToContent get(); void set(System::Windows::SizeToContent value); };
public System.Windows.SizeToContent SizeToContent { get; set; }
member this.SizeToContent : System.Windows.SizeToContent with get, set
Public Property SizeToContent As SizeToContent

プロパティ値

SizeToContent 値。 既定値は、Manual です。

次の例では、コードで プロパティを SizeToContent 設定して、ウィンドウのサイズをコンテンツに合わせて変更する方法を指定する方法を示します。


// Manually alter window height and width
this.SizeToContent = SizeToContent.Manual;

// Automatically resize width relative to content
this.SizeToContent = SizeToContent.Width;

// Automatically resize height relative to content
this.SizeToContent = SizeToContent.Height;

// Automatically resize height and width relative to content
this.SizeToContent = SizeToContent.WidthAndHeight;

' Manually alter window height and width
Me.SizeToContent = SizeToContent.Manual

' Automatically resize width relative to content
Me.SizeToContent = SizeToContent.Width

' Automatically resize height relative to content
Me.SizeToContent = SizeToContent.Height

' Automatically resize height and width relative to content
Me.SizeToContent = SizeToContent.WidthAndHeight

注釈

が にWidthAndHeight設定されている場合SizeToContent、または WidthHeight設定しても効果はありません。両方のプロパティを設定できますが、設定されている値はウィンドウに適用されません。

が にHeight設定されている場合SizeToContent、ウィンドウHeightの高さは変更されません。

が にWidth設定されている場合SizeToContent、ウィンドウWidthの幅は変更されません。

が 以外Manualの値を持つ場合SizeToContent:

  • SizeToContent は、ユーザーがサイズ変更グリップを Manual 使用するか、境界線をドラッグしてウィンドウのサイズを変更する場合に自動的に に設定されます。

  • ウィンドウ自体のサイズを変更する方法でコンテンツのサイズが変更された場合は、 SizeChanged が発生します。

ウィンドウが透明 (参照AllowsTransparency) の場合は、 を にWidthAndHeight設定SizeToContentして、ウィンドウが表示されているコンテンツよりも大きくないことを確認する必要があります。

注意

ウィンドウがブラウザーでホストされている場合、このプロパティを設定または取得することはできません。

依存プロパティ情報

識別子フィールド SizeToContentProperty
に設定されたメタデータ プロパティ true なし

適用対象

こちらもご覧ください