CoreApplicationViewTitleBar.ExtendViewIntoTitleBar 属性

定义

获取或设置一个值,该值指定此标题栏是否应替换默认窗口标题栏。

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

void ExtendViewIntoTitleBar(bool value);
public bool ExtendViewIntoTitleBar { get; set; }
var boolean = coreApplicationViewTitleBar.extendViewIntoTitleBar;
coreApplicationViewTitleBar.extendViewIntoTitleBar = boolean;
Public Property ExtendViewIntoTitleBar As Boolean

属性值

Boolean

bool

设置为 true 可替换默认窗口标题栏;否则为 false

注解

首次运行应用时,对于辅助视图,默认值为 false。 对于应用的main视图,此值在应用程序运行之间保持不变。

ExtendViewIntoTitleBar 为 true 时,视图的内容将由 CoreApplicationViewTitleBar.Height 扩展到标题栏区域。 该区域仍将被视为标题栏,这意味着你仍然可以使用它拖动窗口,双击以最大化,然后右键单击以显示系统菜单。 因此,应避免在区域中放置指针交互内容。 但是,如果调用 Window.SetTitleBar 将 Xaml 元素设置为标题栏,则会删除不可点击的区域,并且不再需要避免将指针交互内容放入该区域。

适用于