Mega Code Archive

 
Categories / VB.Net Tutorial / WPF
 

OuterGlowBitmapEffect with Black GlowColor and 1 GlowSize

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"         Title="">  <Canvas>   <TextBlock FontSize="20" HorizontalAlignment="Center"     FontFamily="Segoe Print" Foreground="White">     Small Glow     <TextBlock.BitmapEffect>       <OuterGlowBitmapEffect GlowColor="Black" GlowSize="1"/>     </TextBlock.BitmapEffect>   </TextBlock>  </Canvas> </Window>