Glowing Text and OuterGlowBitmapEffect
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="Microsoft.Samples.Graphics.RectangleExample" WindowTitle="Example"> <Canvas> <TextBlock FontSize="40" FontWeight="Bold" Margin="3"> <TextBlock.Text>Glowing Text</TextBlock.Text> <TextBlock.BitmapEffect> <OuterGlowBitmapEffect GlowColor="LimeGreen"></OuterGlowBitmapEffect> </TextBlock.BitmapEffect> </TextBlock> </Canvas> </Page>