Skip to content
HO-COOH edited this page Mar 22, 2026 · 3 revisions

CommandBarHelper

Properties (WinUI3 IDL)

Name IsDependencyProperty Description
AcrylicWorkaround Attached/static dependency property.

The WinUI3's built-in CommandBar does not have Acrylic background. We fixed it for you. To use it, simply add CommandBarHelper.AcrylicWorkaround="True" as an attached property on your CommandBar.

<CommandBar essential:CommandBarHelper.AcrylicWorkaround="True">
    <AppBarButton Icon="Add" Label="Add"/>
    <AppBarButton Icon="Edit" Label="Edit"/>
    <AppBarButton Icon="Delete" Label="Delete"/>
</CommandBar>
Before After

Clone this wiki locally