Replies: 1 comment 2 replies
-
Win10/11 has APIs for that. You can use these APIs yourself or, because you said you want an easy way, use a library for that: https://github.com/sourcechord/FluentWPF then after adding it to the resource dictionary, "all" you have to do is: <fw:AcrylicWindow x:Class="WpfApp1.MainWindow"
xmlns:fw="clr-namespace:SourceChord.FluentWPF;assembly=FluentWPF"
Title="MainWindow" Height="300" Width="300">
<Grid Background="#70FFFFFF"/>
</fw:AcrylicWindow> |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In web development, simply setting
backdrop
toblur
in CSS and givingbackground
an appropriate alpha value can achieve a blurred background. So, is there a simple way to implement the blur backdrop effect in WPF? Does WPF have any plans to add this feature in the future?Beta Was this translation helpful? Give feedback.
All reactions