ScrollViewer上方的Windows UWP标题行

时间:2017-08-20 16:29:47

标签: c# xaml uwp win-universal-app

我正在寻找在ScrollViewer上方创建行的解决方案,该行将粘贴在页面顶部。任何解决方案?

应该在“Movier”应用中看起来像: enter image description here

1 个答案:

答案 0 :(得分:1)

您可以使用CommandBar

这是一个示例图像。资料来源:CommandBar

enter image description here

这是一个代码示例

<CommandBar VerticalAlignment="Top">
    <CommandBar.Content>
        <TextBlock Text="LIBRARY" FontSize="36"/>
    </CommandBar.Content>
    <AppBarButton Icon="Favorite" Label="Favorite" Click="AppBarButton_Click"/>
    <AppBarButton Icon="Zoom" Label="Search" Click="AppBarButton_Click"/>
    <AppBarButton Icon="Setting" Label="Setting" Click="AppBarButton_Click"/>
</CommandBar>

您可以在CommandBar Class中了解有关它的更多信息。