BlurBitmapEffect::KernelType Property
.NET Framework (current version)
Note: This API is now obsolete. The non-obsolete alternative is BlurEffect. Gets or sets the type of blur kernel to use for the BlurBitmapEffect.
Assembly: PresentationCore (in PresentationCore.dll)
The following example shows how to specify the KernelType of a BlurBitmapEffect.
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <StackPanel> <Button Width="200">You Can't Read This! <Button.BitmapEffect> <!-- <BitmapEffectGroup> would go here if you wanted to apply more then one effect to the Button. However, in this example only one effect is being applied so BitmapEffectGroup does not need to be included. --> <!-- The larger the Radius, the more blurring. The default range is 20. In addition, the KernelType is set to a box kernel. A box kernel creates less disruption (less blur) then the default Gaussian kernel. --> <BlurBitmapEffect Radius="10" KernelType="Box" /> </Button.BitmapEffect> </Button> </StackPanel> </Page>
.NET Framework
Available since 3.0
Available since 3.0
Show: