programming-examples/c-sharp/Others/Geometry Transform for Rectangle.cs

12 lines
343 B
C#
Raw Normal View History

2019-11-15 12:59:38 +01:00
Geometry Transform for Rectangle
<Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Rectangle Canvas.Left="90" Canvas.Top="90" Stroke="Red"
Width="8" Height="8"
RenderTransform="10 0 0 10 0 0" />
</Canvas>