Bài này csharpcanban.com sẽ hướng dẫn các bạn xoay rectangle một góc nào đó. Để thực hiện làm như sau
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> <Canvas> <Rectangle Canvas.Left="50" Canvas.Top="50" Width="40" Height="10" Fill="Red" /> <Rectangle Canvas.Left="50" Canvas.Top="50" Width="40" Height="10" Fill="Black"> <Rectangle.RenderTransform> <RotateTransform Angle="45" /> </Rectangle.RenderTransform> </Rectangle> </Canvas> </Page>
Chúc các bạn thành công.