gpt4 book ai didi

c# - 适用于 Windows 8 应用程序的 XAML 中的持久性导航栏

转载 作者:太空宇宙 更新时间:2023-11-03 10:34:45 24 4
gpt4 key购买 nike

如何实现持久导航栏。基本上是一个即使通过右键单击操作也无法关闭的应用程序栏。 MS 在本文 (https://msdn.microsoft.com/en-us/library/windows/apps/xaml/dn440584.aspx) 中讨论计算器应用程序中的平面导航时以及在此处 (http://blogs.windows.com/bloggingwindows/2014/05/13/windows-store-refresh-makes-it-easier-to-find-apps/) 查看 Windows 8.1 中的 Windows 商店应用程序的更改时都提到了这一点。

最佳答案

这是你如何做的。

<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" x:Name="NavigationPart" Orientation="Horizontal">
<Button Content="Home" />
<Button Content="Products" />
<Button Content="Contact" />
</StackPanel>
<Frame Grid.Row="1" x:Name="ContentPart" />
</Grid>

祝你好运!

关于c# - 适用于 Windows 8 应用程序的 XAML 中的持久性导航栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28196076/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com