Glowing Effect with OuterGlowBitmapEffect : BitmapEffect « Windows Presentation Foundation « C# / CSharp Tutorial






<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,20,5,5" Grid.Column="0" Grid.Row="1">
      <Button Content="A Growing Button" Width="150" Height="30" Margin="10">
        <Button.BitmapEffect>
          <OuterGlowBitmapEffect GlowColor="Gray"
            GlowSize="15" Noise="1" />
        </Button.BitmapEffect>
      </Button>
      <TextBlock Text="Growing" FontSize="40" FontWeight="Bold"
        Foreground="White" Margin="5">
        <TextBlock.BitmapEffect>
          <OuterGlowBitmapEffect GlowColor="Gray"
            GlowSize="10" Noise="0.5" />
        </TextBlock.BitmapEffect>
      </TextBlock>
    </StackPanel>

</Window>
WPF Glowing Effect With Outer Glow Bitmap Effect








24.97.BitmapEffect
24.97.1.A Beveled Button and TextBlock with BevelBitmapEffectA Beveled Button and TextBlock with BevelBitmapEffect
24.97.2.Shadow Effect and DropShadowBitmapEffectShadow Effect and DropShadowBitmapEffect
24.97.3.Embossed Effect with EmbossBitmapEffectEmbossed Effect with EmbossBitmapEffect
24.97.4.Glowing Effect with OuterGlowBitmapEffectGlowing Effect with OuterGlowBitmapEffect
24.97.5.Blur Effect with BlurBitmapEffectBlur Effect with BlurBitmapEffect
24.97.6.Create a shadow effect for displayed text.Create a shadow effect for displayed text.
24.97.7.Hard single shadowHard single shadow
24.97.8.Hard shadow on top of soft shadowHard shadow on top of soft shadow
24.97.9.Hard shadow on top of noisy shadowHard shadow on top of noisy shadow
24.97.10.Shadow effect by creating an outer glowShadow effect by creating an outer glow