|
@@ -0,0 +1,27 @@
|
|
|
+<Page x:Class="bebra.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:bebra.Pages"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ d:DesignHeight="450" d:DesignWidth="800"
|
|
|
+ Title="CustomerMenu" Background="White">
|
|
|
+
|
|
|
+ <Grid>
|
|
|
+ <Grid.ColumnDefinitions>
|
|
|
+ <ColumnDefinition Width="*"/>
|
|
|
+ <ColumnDefinition Width="257"/>
|
|
|
+ <ColumnDefinition Width="*"/>
|
|
|
+ </Grid.ColumnDefinitions>
|
|
|
+ <Grid.RowDefinitions>
|
|
|
+ <RowDefinition Height="*"/>
|
|
|
+ <RowDefinition Height="70"/>
|
|
|
+ <RowDefinition Height="*"/>
|
|
|
+ </Grid.RowDefinitions>
|
|
|
+ <Button Content="переход 1" Click="ButtonPage1_OnClick" Grid.Column="1" Grid.Row="1" VerticalAlignment="Top" Height="24"/>
|
|
|
+ <Button Content="переход 3" Click="ButtonPage3_OnClick" Grid.Column="1" Grid.Row="1" VerticalAlignment="Top" Margin="0,47,0,0" Height="23"/>
|
|
|
+ <Button Content="переход 2" Click="ButtonPage2_OnClick" Grid.Column="1" Grid.Row="1" VerticalAlignment="Center" Height="23"/>
|
|
|
+
|
|
|
+ </Grid>
|
|
|
+</Page>
|