Blur Effect with BlurBitmapEffect : BitmapEffect « Windows Presentation Foundation « C# / C Sharp






Blur Effect with BlurBitmapEffect

Blur Effect with BlurBitmapEffect
 

<Window x:Class="BitmapEffectsExample"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Title="Bitmap Effects" Height="500" Width="400">
    <!-- : -->
    <StackPanel Margin="5" Grid.Column="1" Grid.Row="0">
      <Button Content="A Blur Button" Width="175" Height="50"
        Margin="5">
        <Button.BitmapEffect>
          <BlurBitmapEffect Radius="1" />
        </Button.BitmapEffect>
      </Button>
      <Button Content="A Blur Button" Width="175" Height="50"
        Margin="5">
        <Button.BitmapEffect>
          <BlurBitmapEffect Radius="3" />
        </Button.BitmapEffect>
      </Button>
    </StackPanel>

</Window>

   
  








Related examples in the same category

1.A Beveled Button and TextBlock with BevelBitmapEffectA Beveled Button and TextBlock with BevelBitmapEffect
2.Shadow Effect and DropShadowBitmapEffectShadow Effect and DropShadowBitmapEffect
3.Embossed Effect with EmbossBitmapEffectEmbossed Effect with EmbossBitmapEffect
4.Glowing Effect with OuterGlowBitmapEffectGlowing Effect with OuterGlowBitmapEffect
5.Create a shadow effect for displayed text.Create a shadow effect for displayed text.
6.Hard single shadowHard single shadow
7.Hard shadow on top of soft shadowHard shadow on top of soft shadow
8.Hard shadow on top of noisy shadowHard shadow on top of noisy shadow
9.Shadow effect by creating an outer glowShadow effect by creating an outer glow