Я хочу связать AppBarButtons с CommandBar.
Я попытался просмотреть документацию CommandBar и обнаружил, что это часть PrimaryCommands
, но я пытаюсь связать ее, но она доступна только для чтения, и я могу 'ничего не напишу.
Вот что я хотел сделать.
<CommandBar PrimaryCommands={x:Bind AdditionCommands}/>
Итак, позже я мог бы просто:
<customUI:PauseMenu>
<customUI:PauseMenu.AdditionCommands>
<AppBarButton Label="Some"/>
<AppBarButton Label="Commands"/>
<AppBarButton Label="Heres"/>
</customUI:PauseMenu.AdditionCommands>
</customUI:PauseMenu>