Replies: 2 comments 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> |
2 replies
|
You might try putting a border inside of each grid you want to blur and then add BlurEffect to the border. |
0 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
backdroptoblurin CSS and givingbackgroundan 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?All reactions