本文介绍了[UWP]我无法自动隐藏/显示看到CommandBar的更多按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我正在编写一个UWP应用程序。 我的设备操作系统版本号为15063.413,我的应用目标版本是Windows 10周年纪念版(10.0; Build 14393)。 我想自动显示/隐藏"查看更多"按钮,当CommandBar没有辅助命令时,我希望它自动隐藏,否则它应该显示。 我看到 appbar's  doc 。它说我可以使用OverflowButtonVisibility 属性允许应用程序更改此默认自动隐藏行为,但似乎无效。< Grid Background =" {ThemeResource ApplicationPageBackgroundThemeBrush }"> < CommandBar x:Name =" bottomCommandBar" OverflowButtonVisibility = QUOT;自动"> < AppBarButton x:Name =" searchButton"标签= [搜寻"图标= QUOT;查找与QUOT; /> <! - < CommandBar.SecondaryCommands> < AppBarButton Label ="帮助"图标= [说明" /> < /CommandBar.SecondaryCommands> - > < / CommandBar> < / Grid> 我们可以看到它始终显示"查看更多"按钮。 最好的问候, Jerry .Net Windows C#解决方案 I'm writing an UWP app.My device OS build version is 15063.413, my app target version is Windows 10 Anniversary Edition(10.0;Build 14393).I want to auto show/hide the "See More" button, When CommandBar have no secondary commands I want it auto hide otherwise it should be show.I see the appbar's doc. It said that I can use the OverflowButtonVisibilityproperty allows apps to change this default auto-hide behavior, but it seems not work.<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> <CommandBar x:Name="bottomCommandBar" OverflowButtonVisibility="Auto"> <AppBarButton x:Name="searchButton" Label="Search" Icon="Find"/> <!--<CommandBar.SecondaryCommands> <AppBarButton Label="Help" Icon="Help"/> </CommandBar.SecondaryCommands>--> </CommandBar></Grid>We can see it always show the "See More" button.Please tell me how to make it work.Best Regards,Jerry.Net Windows C# 解决方案 这篇关于[UWP]我无法自动隐藏/显示看到CommandBar的更多按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-20 20:24