我们可以在UWP中自定义CommandBar吗

Can we customize CommandBar in UWP

我有一个 UWP 应用程序。在那里,我有一个 CommandBar,其中有一些 AppBarButton。现在,我需要在同一个命令栏中添加一些自定义的单选按钮,这些单选按钮将组合在一起并准确显示在命令栏的中间(不像默认行为那样右对齐)。

有没有办法使用 CommandBar 实现它?

是的,你可以。看看official sample。在示例中,您可以找到很多如何在 UWP 应用程序中使用应用栏的组合

更新:

<Page.BottomAppBar>
    <CommandBar>
        <CommandBar.Content>
            <Grid> 
                <RadioButton />
             ...  

p.s。不要忘记 HorizontalAlignmentHorizontalContentAlignment 属性