programming-examples/c-sharp/Others/An ellipse that has been scaled by 20%.cs

18 lines
498 B
C#
Raw Normal View History

2019-11-15 12:59:38 +01:00
An ellipse that has been scaled by 20%
<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 ="Red" Grid.Row="0" Grid.Column="2" Width="8" Height="8">
<Ellipse.RenderTransform>
<ScaleTransform ScaleX ="16" ScaleY ="16"/>
</Ellipse.RenderTransform>
</Ellipse>
</Grid>
</Window>