123456789101112131415161718192021222324252627282930313233343536 |
- <Page x:Class="Praktika13_Chistyakov.Pages.CustomerMenu"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:Praktika13_Chistyakov.Pages"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="CustomerMenu">
- <Grid Background="White">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="219*"/>
- <ColumnDefinition Width="308*"/>
- <ColumnDefinition Width="273*"/>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="179*"/>
- <RowDefinition Height="172*"/>
- <RowDefinition Height="99*"/>
- </Grid.RowDefinitions>
- <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">
- <Button.RenderTransform>
- <TransformGroup>
- <ScaleTransform/>
- <SkewTransform/>
- <RotateTransform Angle="-0.051"/>
- <TranslateTransform/>
- </TransformGroup>
- </Button.RenderTransform>
- </Button>
- <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"/>
- <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"/>
- </Grid>
- </Page>
|