Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.39 KB

page_bottomappbar.md

File metadata and controls

37 lines (26 loc) · 1.39 KB
-api-id -api-type
P:Windows.UI.Xaml.Controls.Page.BottomAppBar
winrt property

Windows.UI.Xaml.Controls.Page.BottomAppBar

-description

Gets a reference to an AppBar displayed at the bottom of the page, if any.

-xaml-syntax

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

-property-value

A reference to an AppBar displayed at the bottom of the page, or null.

-remarks

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

For example code that adds an AppBar to a page, see Quickstart: adding app bars or How to share an app bar across pages.

-see-also

AppBar, Quickstart: adding app bars