|
@@ -0,0 +1,27 @@
|
|
|
+<Page x:Class="DanilovProject.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:DanilovProject.Pages"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ d:DesignHeight="450" d:DesignWidth="800"
|
|
|
+ Title="CustomerMenu">
|
|
|
+
|
|
|
+ <Grid>
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="*"/>
|
|
|
+ <RowDefinition Height="70"/>
|
|
|
+ <RowDefinition Height="*"/>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition Width="*"/>
|
|
|
+ <ColumnDefinition Width="257"/>
|
|
|
+ <ColumnDefinition Width="*"/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <Button Content="Переход 1" Click="ButtonPage1_OnClick" HorizontalAlignment="Center" Margin="0,160,0,0" VerticalAlignment="Top" Height="51" Width="204" Grid.Column="1" Grid.RowSpan="2"/>
|
|
|
+ <Button Content="Переход 2" Click="ButtonPage2_OnClick" HorizontalAlignment="Center" Margin="0,35,0,0" VerticalAlignment="Top" Height="51" Width="204" Grid.Column="1" Grid.RowSpan="2" Grid.Row="1"/>
|
|
|
+ <Button Content="Переход 3" Click="ButtonPage3_OnClick" HorizontalAlignment="Center" Margin="0,44,0,0" VerticalAlignment="Top" Height="51" Width="204" Grid.Column="1" Grid.Row="2"/>
|
|
|
+
|
|
|
+ </Grid>
|
|
|
+</Page>
|