-
Notifications
You must be signed in to change notification settings - Fork 8
NavigationViewHelper
HO-COOH edited this page Mar 22, 2026
·
3 revisions
| 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 |
|---|---|
![]() |
![]() |

