CustomerMenu.xaml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Page x:Class="Praktika13_Chistyakov.Pages.CustomerMenu"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:Praktika13_Chistyakov.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="CustomerMenu">
  10. <Grid Background="White">
  11. <Grid.ColumnDefinitions>
  12. <ColumnDefinition Width="219*"/>
  13. <ColumnDefinition Width="308*"/>
  14. <ColumnDefinition Width="273*"/>
  15. </Grid.ColumnDefinitions>
  16. <Grid.RowDefinitions>
  17. <RowDefinition Height="179*"/>
  18. <RowDefinition Height="172*"/>
  19. <RowDefinition Height="99*"/>
  20. </Grid.RowDefinitions>
  21. <Button Content="Переход 1" HorizontalAlignment="Left" Margin="22,10,0,0" Grid.Row="1" VerticalAlignment="Top" Width="250" Grid.Column="1" Height="38" Click="Button_Click" Background="#FFEACACA" RenderTransformOrigin="0.5,0.5">
  22. <Button.RenderTransform>
  23. <TransformGroup>
  24. <ScaleTransform/>
  25. <SkewTransform/>
  26. <RotateTransform Angle="-0.051"/>
  27. <TranslateTransform/>
  28. </TransformGroup>
  29. </Button.RenderTransform>
  30. </Button>
  31. <Button Content="Переход 2" HorizontalAlignment="Left" Margin="21,68,0,0" Grid.Row="1" VerticalAlignment="Top" Width="252" Grid.Column="1" Height="37" Background="#FFE6D6D6" Click="Button_Click_1"/>
  32. <Button Content="Переход 3" HorizontalAlignment="Left" Margin="21,123,0,0" Grid.Row="1" VerticalAlignment="Top" Width="252" Grid.Column="1" Height="39" Background="#FFF3DADA" Click="Button_Click_2"/>
  33. </Grid>
  34. </Page>