An ellipse that has been scaled by 20%

image_pdfimage_print


   
     
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
        xmlns:sys="clr-namespace:System;assembly=mscorlib" 
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" >
  <Grid>

    <Ellipse Fill ="Blue" Grid.Row="0" Grid.Column="2" Width="5" Height="5">
      <Ellipse.RenderTransform>
        <ScaleTransform ScaleX ="20" ScaleY ="20"/>
      </Ellipse.RenderTransform>
    </Ellipse>

  </Grid>

</Window>