An ellipse that has been scaled by 20% : SkewTransform « Graphics « Silverlight






An ellipse that has been scaled by 20%

An ellipse that has been scaled by 20%
   

<UserControl x:Class='SilverlightApplication3.MainPage'
    xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' 
    xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
    xmlns:d='http://schemas.microsoft.com/expression/blend/2008' 
    xmlns:mc='http://schemas.openxmlformats.org/markup-compatibility/2006' 
    mc:Ignorable='d' 
    d:DesignWidth='640' 
    d:DesignHeight='480'>
  <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>
</UserControl>

   
    
    
  








Related examples in the same category

1.Use SkewTransform to transform an image
2.Skew the text using a SkewTransformSkew the text using a SkewTransform
3.Applies a horizontal skew of 45 degrees from a center point of (0,0)Applies a horizontal skew of 45 degrees from a center point of (0,0)
4.Applies a horizontal skew of 45 degrees from a center point of (25,25)Applies a horizontal skew of 45 degrees from a center point of (25,25)
5.Applies a vertical skew of 45 degrees from a center point of (25,25)Applies a vertical skew of 45 degrees from a center point of (25,25)
6.SkewTransform AngleX: 45 / AngleY: 0 / RenderTransformOrigin: (0.5,0.5)SkewTransform AngleX: 45 / AngleY: 0 / RenderTransformOrigin: (0.5,0.5)
7.SkewTransform TransformationSkewTransform Transformation