1 <Canvas xmlns="http://schemas.microsoft.com/client/2007">
2 <!-- default == Fill -->
3 <Ellipse Fill="Red" Canvas.Left="10" Canvas.Top="10" Width="20" Height="10" />
4 <Ellipse Fill="Orange" Canvas.Left="32" Canvas.Top="10" Width="20" Height="10" />
5 <Ellipse Fill="Yellow" Canvas.Left="54" Canvas.Top="10" Width="20" Height="10" />
6 <Ellipse Fill="Green" Canvas.Left="76" Canvas.Top="10" Width="20" Height="10" />
7 <Ellipse Fill="Blue" Canvas.Left="98" Canvas.Top="10" Width="20" Height="10" />
8 <Ellipse Fill="Purple" Canvas.Left="120" Canvas.Top="10" Width="20" Height="10" />
10 <Ellipse Fill="Red" Canvas.Left="10" Canvas.Top="22" Width="20" Height="10" Stretch="None"/>
11 <Ellipse Fill="Orange" Canvas.Left="32" Canvas.Top="22" Width="20" Height="10" Stretch="None"/>
12 <Ellipse Fill="Yellow" Canvas.Left="54" Canvas.Top="22" Width="20" Height="10" Stretch="None"/>
13 <Ellipse Fill="Green" Canvas.Left="76" Canvas.Top="22" Width="20" Height="10" Stretch="None"/>
14 <Ellipse Fill="Blue" Canvas.Left="98" Canvas.Top="22" Width="20" Height="10" Stretch="None"/>
15 <Ellipse Fill="Purple" Canvas.Left="120" Canvas.Top="22" Width="20" Height="10" Stretch="None"/>
17 <Ellipse Fill="Red" Canvas.Left="10" Canvas.Top="34" Width="20" Height="10" Stretch="Fill"/>
18 <Ellipse Fill="Orange" Canvas.Left="32" Canvas.Top="34" Width="20" Height="10" Stretch="Fill"/>
19 <Ellipse Fill="Yellow" Canvas.Left="54" Canvas.Top="34" Width="20" Height="10" Stretch="Fill"/>
20 <Ellipse Fill="Green" Canvas.Left="76" Canvas.Top="34" Width="20" Height="10" Stretch="Fill"/>
21 <Ellipse Fill="Blue" Canvas.Left="98" Canvas.Top="34" Width="20" Height="10" Stretch="Fill"/>
22 <Ellipse Fill="Purple" Canvas.Left="120" Canvas.Top="34" Width="20" Height="10" Stretch="Fill"/>
24 <Ellipse Fill="Red" Canvas.Left="10" Canvas.Top="46" Width="20" Height="10" Stretch="Uniform"/>
25 <Ellipse Fill="Orange" Canvas.Left="32" Canvas.Top="46" Width="20" Height="10" Stretch="Uniform"/>
26 <Ellipse Fill="Yellow" Canvas.Left="54" Canvas.Top="46" Width="20" Height="10" Stretch="Uniform"/>
27 <Ellipse Fill="Green" Canvas.Left="76" Canvas.Top="46" Width="20" Height="10" Stretch="Uniform"/>
28 <Ellipse Fill="Blue" Canvas.Left="98" Canvas.Top="46" Width="20" Height="10" Stretch="Uniform"/>
29 <Ellipse Fill="Purple" Canvas.Left="120" Canvas.Top="46" Width="20" Height="10" Stretch="Uniform"/>
31 <Ellipse Fill="Red" Canvas.Left="10" Canvas.Top="58" Width="20" Height="10" Stretch="UniformToFill"/>
32 <Ellipse Fill="Orange" Canvas.Left="32" Canvas.Top="58" Width="20" Height="10" Stretch="UniformToFill"/>
33 <Ellipse Fill="Yellow" Canvas.Left="54" Canvas.Top="58" Width="20" Height="10" Stretch="UniformToFill"/>
34 <Ellipse Fill="Green" Canvas.Left="76" Canvas.Top="58" Width="20" Height="10" Stretch="UniformToFill"/>
35 <Ellipse Fill="Blue" Canvas.Left="98" Canvas.Top="58" Width="20" Height="10" Stretch="UniformToFill"/>
36 <Ellipse Fill="Purple" Canvas.Left="120" Canvas.Top="58" Width="20" Height="10" Stretch="UniformToFill"/>