2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 Width="100" Height="200">
6 <Rectangle Width="100" Height="200" Canvas.Left="0" Canvas.Top="0" Fill="DarkBlue" />
8 <Path Width="100" Height="100" Canvas.Left="0" Canvas.Top="0" Stretch="Fill" Data="F1 M 0,0L 100,0L 100,10L 50,5L 0,10">
10 <LinearGradientBrush SpreadMethod="Reflect" StartPoint="0,0" EndPoint="1,1">
11 <LinearGradientBrush.GradientStops>
12 <GradientStop Color="White" Offset="0.0" />
13 <GradientStop Color="Red" Offset="1.0" />
14 </LinearGradientBrush.GradientStops>
15 </LinearGradientBrush>