<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="WPF" Height="350" Width="400">
<Button Content="A rotated Button" Grid.Row="0" Grid.Column="1"
Height="23" Width="100">
<Button.LayoutTransform>
<RotateTransform Angle="-120"/>
</Button.LayoutTransform>
</Button>
</Window>
|