Mega Code Archive

 
Categories / VB.Net / WPF
 

Transformed Buttons with RotateTransform And Angle

<Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">     <Button Canvas.Left="50" Canvas.Top="100">         Untransformed     </Button>     <Button Canvas.Left="650" Canvas.Top="100">         Rotated         <Button.RenderTransform>             <RotateTransform Angle="-30" />         </Button.RenderTransform>     </Button> </Canvas>