共用方式為


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

若要指定自定義標題列,您必須設定 ExtendsContentIntoTitleBartrue 來隱藏預設系統標題列。 如果 為 ExtendsContentIntoTitleBarfalse,則呼叫 SetTitleBar 不會有任何作用。 您的自定義標題列元素會顯示在應用程式窗口主體中作為一般 UI 元素,而且不會取得標題列行為。

如果您設定 ExtendsContentIntoTitleBartrue 但未呼叫 SetTitleBar,則會提供預設的自定義標題列。 如需詳細資訊,請參閱 SetTitleBar

適用於

另請參閱