如何使用appbarbutton(称为按钮A)替换命令栏中的更多选项按钮。当点击按钮A时,我需要显示带有标签的其他appbarbuttons(位于Appbarbuttons的底部)。
答案 0 :(得分:0)
在AppBarButton
中使用弹出按钮<AppBarButton Label="A">
<AppBarButton.Flyout>
<Flyout>
<StackPanel>
<Button Content="B"/>
<Button Content="C"/>
</StackPanel>
</Flyout>
</AppBarButton.Flyout>
</AppBarButton>