0

导航指南确实提到我们可以在导航栏(顶部应用栏)中包含按钮的缩略图。我搜索了示例,但没有找到。我创建了一个基本的顶部应用栏。

有人可以帮我吗?

4

1 回答 1

1

带有缩略图的 Appbar 不需要任何特殊代码。检查下面给定的代码。你可以在里面放任何东西Grid

<Page.TopAppBar>
    <AppBar Height="180" Background="Tan">
        <StackPanel Orientation="Horizontal">
            <Grid Height="160" Width="200" Background="Red" Margin="10"/>
            <Grid Height="160" Width="200" Background="Green" Margin="10"/>
            <Grid Height="160" Width="200" Background="Yellow" Margin="10"/>
            <Grid Height="160" Width="200" Background="Blue" Margin="10"/>
        </StackPanel>
    </AppBar>
</Page.TopAppBar>
于 2013-05-16T10:45:50.880 回答