Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 2.1 KB

BackdropBlurBrush.md

File metadata and controls

53 lines (36 loc) · 2.1 KB
title author description keywords
BackdropBlurBrush
michael-hawker
The BackdropBlurBrush is a Brush that blurs whatever is behind it in the application.
windows 10, uwp, windows community toolkit, uwp community toolkit, uwp toolkit, brush, backdrop, blur

BackdropBlurBrush

The BackdropBlurBrush is a Brush that blurs whatever is behind it in the application.

[!div class="nextstepaction"] Try it in the sample app

Syntax

<Border BorderBrush="Black" BorderThickness="1" VerticalAlignment="Center" HorizontalAlignment="Center" Width="400" Height="400">
  <Border.Background>
    <media:BackdropBlurBrush Amount="3.0" />
  </Border.Background>
</Border>

Example Image

Backdrop Blur

Properties

Property Type Description
Amount double The Amount property specifies a double value for the amount of Gaussian blur to apply.

Sample Project

BackdropBlurBrush sample page Source. You can see this in action in the Windows Community Toolkit Sample App.

Requirements

Device family Universal, 10.0.16299.0 or higher
Namespace Microsoft.Toolkit.Uwp.UI.Media
NuGet package Microsoft.Toolkit.Uwp.UI.Media

API

Related Topics