Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 1.59 KB

page_bottomappbar.md

File metadata and controls

45 lines (30 loc) · 1.59 KB
-api-id -api-type
P:Microsoft.UI.Xaml.Controls.Page.BottomAppBar
winrt property

Microsoft.UI.Xaml.Controls.Page.BottomAppBar

-description

Gets or sets the AppBar displayed at the bottom of the page.

-xaml-syntax

<Page ...>
  <Page.BottomAppBar>
    <AppBar .../>
  </Page.BottomAppBar>
</Page>

-property-value

A reference to an AppBar displayed at the top of the page, if any; otherwise, null.

-remarks

Note

For apps in Windows 10 or later, placing commands in the TopAppBar and BottomAppBar is not recommended.

In XAML, make sure you specify the Page.BottomAppBar property element in the same area as other property elements that may already be defined, like Page.TopAppBar or Page.Resources. The XAML language enforces that you can't mix the property elements between the XAML content that is setting Content, such as the typical root Grid element. For more info on XAML syntax, see XAML syntax guide.

-examples

-see-also

Command bar, Navigation design basics for Windows apps