Window.ExtendsContentIntoTitleBar 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指定是否應該隱藏視窗的預設標題列,以建立應用程式內容的空間。
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 。
若要指定自定義標題列,您必須設定 ExtendsContentIntoTitleBar
為 true
來隱藏預設系統標題列。 如果 為 ExtendsContentIntoTitleBar
false
,則呼叫 SetTitleBar
不會有任何作用。 您的自定義標題列元素會顯示在應用程式窗口主體中作為一般 UI 元素,而且不會取得標題列行為。
如果您設定 ExtendsContentIntoTitleBar
為 true
但未呼叫 SetTitleBar
,則會提供預設的自定義標題列。 如需詳細資訊,請參閱 SetTitleBar 。