Skip to content

NavigationViewHelper

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

NavigationViewHelper

Properties (WinUI3 IDL)

Name IsDependencyProperty Description
AcrylicWorkaround Attached/static dependency property.
ClipToBounds Attached/static dependency property.

The WinUI3's built-in NavigationView does not have Acrylic background with the dropdown menu and the overflow menu when it's at top. We fixed it for you. To use it, simply add TimePickerHelper.AcrylicWorkaround="True" as an attached property on your NavigationView when it has PaneDisplayMode="Top".

<NavigationView
    ...
    essential:NavigationViewHelper.AcrylicWorkaround="True"
    PaneDisplayMode="Top">

    ...Other contents...
</NavigationView>
Before After

Clone this wiki locally