Windows 10个应用的横向菜单叫什么名字,如何实现?

What's the name of the horizontal menu specific to Windows 10 apps and how to implement it?

我说的是那种菜单类型,您可以在右侧看到下一个元素,您需要将屏幕向右滑动才能移动到它。 示例:1

您指的是 Panorama Control for which there are multiple sources out on the net to give you in depth tutorials and examples of usage and tricks. You can find Win10 specifics starting here

其中一个例子(直接取自文档);

<Grid x:Name="LayoutRoot">
   <controls:Panorama Title="my application">

      <!--Panorama item one-->
      <controls:PanoramaItem Header="item1">
         <Grid/>
       </controls:PanoramaItem>

       <!--Panorama item two-->
       <controls:PanoramaItem Header="item2">
          <Grid/>
       </controls:PanoramaItem>
    </controls:Panorama>
</Grid>

不过正如 Richard 所指出的,您的问题并没有显示您在询问之前付出了多少努力,也没有直接与有关编程的特定问题相关,而是更倾向于仅搜索功能。

但是,由于这是您第一天访问 SO,希望这对您有所帮助,并且在未来您可以浏览常见问题解答以了解该网站的一些基本指南,以避免在前进过程中出现任何问题。欢迎,它确实是一个很好的资源支持,由许多伟大的人互相帮助。希望这有帮助,干杯。