Transforms 요소 - <SkewTransform /> : UI 요소 기울이기
[FrmSkewTransform.xaml]
<UserControl x:Class="RiaTransform.FrmSkewTransform"
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:DesignHeight="300" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="White">
<Rectangle Width="100" Height="100" Fill="red">
<Rectangle.RenderTransform>
<SkewTransform AngleX="20" AngleY="30"></SkewTransform>
</Rectangle.RenderTransform>
</Rectangle>
</Grid>
</UserControl>
-------------------------------------------------------------------------------------
[실행결과]