FluentWPF sample is broken
See original GitHub issueHello Kinnara,
thank you for creating and sharing this awesome library! Quite impressive.
I’m trying to implement a navigation window with Acrylic brush and Theme support. It appears like rendering/styling of the FluentWPFSample application has been broken in the current release (8.3.0).
The AcrylicBrush is working, however the current ModernWPF DefaultWindowStyle
seems to override some of the brushes. Removing the default window style restore the acrylic effect, but breaks theme support.
Cheers, keep up the good work,
Michel
Issue Analytics
- State:
- Created 3 years ago
- Comments:9 (1 by maintainers)
Top Results From Across the Web
sourcechord/FluentWPF: Fluent Design System for WPF.
Accent color depends on the accent color of the system. Sample, Color, Brush. #a6d8ff, ImmersiveSystemAccentLight3, ImmersiveSystemAccentLight3Brush. #76b9ed ...
Read more >What's New for Windows UX Developers: Fluent and XAML
Join us for a lap around the new innovations coming to the Windows ux platform this year. Catch up on the latest UWP...
Read more >Getting Started with WPF Fluent Theme
The following example shows how to apply fluent dark theme for WPF Window using skin manager. When applying the theme to Window, the...
Read more >Fluent Design Toolkit for WPF - uwp
It's baked into the WPF project template of Windows Template Studio for VS2022. However, the style is stuck at Metro / Win8.
Read more >blogs-sitemap.xml
... .com/blogs/how-to-build-break-even-analysis-calculator-winforms-datagrid ... https://www.grapecity.com/blogs/javascript-excel-spreadsheet-examples-for- ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Now that we’re going to have NavigationView in v0.9, it’s a good time to explore the possibilities of introducing support for acrylic.
I’ve hit this issue as well. To fix it I’ve dropped using FluentWPF default styles. Instead, I wrote a custom window style (derived from ModernWPF style) that essentially adds the acrylic layers (3 window-size visuals) to the ModernWPF window template, instead of retemplating the whole thing as AcrylicWindow does. The only missing bit was calling EnableBlur from FluentWPF internals, which I was forced to make public. I can post my solution tomorrow, but it would be better to have this built in ModernWPF instead (then, it could follow WinUI more closely).