﻿<Page
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <InkCanvas EditingMode="Select">
    <Rectangle
      Width="1in"
      Height="1in"
      Fill="Red"
      InkCanvas.Left="1in"
      InkCanvas.Top="1in"
      RadiusX="5"
      RadiusY="5"
      Stroke="Black"/>
    <Ellipse
      Width="1in"
      Height="1in"
      Fill="Yellow"
      InkCanvas.Bottom="1in"
      InkCanvas.Right="1in"
      Stroke="Black"/>
  </InkCanvas>
</Page>
