Mega Code Archive

 
Categories / VB.Net / WPF
 

Distant Shadow

<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 Margin="3,0,3,13" FontSize="40" FontWeight="Bold">       <TextBlock.Text>Distant Shadow</TextBlock.Text>       <TextBlock.BitmapEffect>         <DropShadowBitmapEffect ShadowDepth="20" Color="LightSteelBlue" Softness="0"></DropShadowBitmapEffect>       </TextBlock.BitmapEffect>     </TextBlock>   </Canvas> </Page>