﻿<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <Canvas Background="Silver">
    <Rectangle
      Width="1in"
      Height="1in"
      Canvas.Left="10"
      Canvas.Top="10"
      Fill="Red"
      RadiusX="5"
      RadiusY="5"/>
    <Ellipse
      Width="1in"
      Height="1in"
      Canvas.Bottom="10"
      Canvas.Right="10"
      Fill="Yellow"/>
  </Canvas>
</Page>
