< Window x:Class="MyMediaPlayer.ImageReflection" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="ImageReflection" Height="600" Width="300" Background="Brown" >< !--define TextBlock for Text -- >< TextBlock Width="200" Height="30" Text="Welcome to WPF" TextAlignment="Center" FontSize="25" Foreground="Green" >< !-- Define effect (Bitmap Effect)-- > < TextBlock.BitmapEffect >< !-- Define Drop Show effect -->< DropShadowBitmapEffect ShadowDepth="6" Direction="45" Softness="0.0" Color="White" Opacity="0.35" >< /DropShadowBitmapEffect >< /TextBlock.BitmapEffect >< /TextBlock >< /Window >