代码之家  ›  专栏  ›  技术社区  ›  Kacper

ScrollViewer上方的Windows UWP标题行

  •  -2
  • Kacper  · 技术社区  · 7 年前

    我正在寻找解决方案,以创建上面的ScrollViewer行,将坚持在页面的顶部。有什么解决方案吗?

    在“Movier”应用程序中应该是这样的: enter image description here

    1 回复  |  直到 7 年前
        1
  •  1
  •   Vijay Nirmal    7 年前

    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 .