Page.BottomAppBar 属性

定义

获取或设置显示在页面底部的 AppBar

AppBar BottomAppBar();

void BottomAppBar(AppBar value);
public AppBar BottomAppBar { get; set; }
var appBar = page.bottomAppBar;
page.bottomAppBar = appBar;
Public Property BottomAppBar As AppBar
<Page ...>
  <Page.BottomAppBar>
    <AppBar .../>
  </Page.BottomAppBar>
</Page>

属性值

对显示在页面顶部的 AppBar 的引用(如果有);否则为 null

注解

注意

对于 Windows 10 或更高版本中的应用,不建议在 和 BottomAppBarTopAppBar放置命令。

在 XAML 中,请确保 Page.BottomAppBar 指定属性元素与可能已定义的其他属性元素(如 Page.TopAppBarPage.Resources)位于同一区域中。 XAML 语言强制要求不能在设置 Content 的 XAML 内容(如典型的根 网格 元素)之间混合属性元素。 有关 XAML 语法的详细信息,请参阅 XAML 语法指南

适用于

另请参阅