Mega Code Archive

 
Categories / VB.Net / WPF
 

TranslateTransform

<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="4" Grid.Column="1" Background="LightBlue" Content="TranslateTransform: LayoutTransform">         <Button.LayoutTransform>           <TranslateTransform X="100" Y="200" />         </Button.LayoutTransform>       </Button>   </Grid> </Page>