12345678910111213141516171819202122 |
- <Page x:Class="IS32_Shafrygin_PR13.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:IS32_Shafrygin_PR13.Pages"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="CustomerMenu">
- <Grid Background="White">
- <Grid.RowDefinitions>
- <RowDefinition Height="107*"/>
- <RowDefinition Height="126"/>
- <RowDefinition Height="217*"/>
- </Grid.RowDefinitions>
- <Button Content="Переход 1" Click="ButtonPage1_OnClick" Margin="195,7,221,86" Grid.Row="1"/>
- <Button Content="Переход 2" Click="ButtonPage2_OnClick" Margin="195,47,221,46" Grid.Row="1"/>
- <Button Content="Переход 3" Click="ButtonPage3_OnClick" Margin="195,87,221,6" Grid.Row="1"/>
- </Grid>
- </Page>
|