- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个命令栏宽度辅助命令:
<CommandBar>
<AppBarButton Icon="Back" Label="Back" Click="AppBarButton_Click"/>
<AppBarButton Icon="Stop" Label="Stop" Click="AppBarButton_Click"/>
<AppBarButton Icon="Play" Label="Play" Click="AppBarButton_Click"/>
<AppBarButton Icon="Forward" Label="Forward" Click="AppBarButton_Click"/>
<CommandBar.SecondaryCommands>
<AppBarButton Icon="Like" Label="Like" Click="AppBarButton_Click"/>
<AppBarButton Icon="Dislike" Label="Dislike" Click="AppBarButton_Click"/>
</CommandBar.SecondaryCommands>
</CommandBar>
为什么不显示“喜欢”和“不喜欢”图标?
最佳答案
在 Windows 8.1 中,主要和次要命令是一种将按钮放在左侧和右侧的方法。在 Windows 10 UWP 中,辅助命令被移动到桌面和手机上的弹出菜单中。默认情况下,图标不显示在此弹出菜单中。
The SecondaryCommands collection can contain only AppBarButton, AppBarToggleButton, or AppBarSeparator command elements. The secondary commands are shown in the overflow menu when the CommandBar is open.
来源:MSDN .
如果您想尝试覆盖该样式,请查看 generic.xaml 中的 OverflowPopup
控件和 CommandBarOverflowPresenter
样式以帮助您入门。
C:\Program Files (x86)\Windows Kits\10\DesignTime\CommonConfiguration\Neutral\UAP\10.0.10240.0\Generic\generic.xaml
关于c# - 在 CommandBar 的 SecondaryCommand 上设置图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34342022/
我有一个命令栏宽度辅助命令: 为什么不显示“喜欢”和“不喜欢”图标? 最佳答案 在 Windows
我是一名优秀的程序员,十分优秀!