Windows 8中带有缩略图的导航栏

本文关键字:略图 导航 Windows | 更新日期: 2023-09-27 18:13:46

导航指南确实提到我们可以在导航栏(顶部应用程序栏)中包含缩略图。我找了很多例子,但没有找到。我已经创建了一个基本的顶部应用程序栏。

有人能帮我一下吗?

Windows 8中带有缩略图的导航栏

带缩略图的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>