Window.ExtendsContentIntoTitleBar プロパティ

定義

アプリ コンテンツの領域を作成するために、ウィンドウの既定のタイトル バーを非表示にするかどうかを指定する値を取得または設定します。

public:
 property bool ExtendsContentIntoTitleBar { bool get(); void set(bool value); };
bool ExtendsContentIntoTitleBar();

void ExtendsContentIntoTitleBar(bool value);
public bool ExtendsContentIntoTitleBar { get; set; }
var boolean = window.extendsContentIntoTitleBar;
window.extendsContentIntoTitleBar = boolean;
Public Property ExtendsContentIntoTitleBar As Boolean

プロパティ値

Boolean

bool

true 既定のタイトル バーを非表示にする場合は 。それ以外の場合は false

注釈

このプロパティを SetTitleBar メソッドと組み合わせて使用して、アプリ ウィンドウのシステム タイトル バーをカスタム コンテンツに置き換えます。 詳細と例については 、「SetTitleBar 」を参照してください。

カスタム タイトル バーを指定するには、 を にtrue設定ExtendsContentIntoTitleBarして、既定のシステム タイトル バーを非表示にする必要があります。 が falseの場合ExtendsContentIntoTitleBar、 のSetTitleBar呼び出しは影響を与えません。 カスタム タイトル バー要素は、アプリ ウィンドウの本文に通常の UI 要素として表示され、タイトル バーの動作は取得されません。

を に設定 ExtendsContentIntoTitleBar しても、 を true 呼び出 SetTitleBarさない場合は、既定のカスタム タイトル バーが提供されます。 詳細については 、「SetTitleBar 」を参照してください。

適用対象

こちらもご覧ください