MatrixTransform Sample
<Page x:Class="WebPageNavigation.Page1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" WindowTitle="Page1" > <Grid> <Button Grid.Row="5" Grid.Column="1" Background="LightGoldenrodYellow" Content="MatrixTransform"> <Button.LayoutTransform> <MatrixTransform Matrix="1,3,3,3,3,3"/> </Button.LayoutTransform> </Button> </Grid> </Page>