July 2015
Intermediate to advanced
1300 pages
87h 27m
English
You can apply multiple transformations by contextually implementing a TransformGroup as a nested node of RenderTransform. The following code demonstrates how you can both rotate and skew a visual element:
<ListBox Name="SkewListBox" Grid.Row="1" Grid.Column="0" Style="{StaticResource ListStyle}"> <ListBox.RenderTransform> <TransformGroup> <SkewTransform AngleX="15" AngleY="30" CenterX="50" CenterY="50" /> <RotateTransform Angle="180" CenterX="80" CenterY="80"/> </TransformGroup> </ListBox.RenderTransform></ListBox>
A Couple Important Notes
Another transformation named MatrixTransform is available and enables ...
Read now
Unlock full access