12345678910111213141516171819202122232425262728 |
- <Page x:Class="Logistics_application.MainMenu"
- 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:Logistics_application"
- mc:Ignorable="d"
- d:DesignHeight="400" d:DesignWidth="600"
- Title="MainMenu">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="45"/>
- <RowDefinition Height="306"/>
- <RowDefinition Height="45"/>
- </Grid.RowDefinitions>
- <Frame NavigationUIVisibility="Hidden" Grid.Row="1" Name="MainFrame" Grid.RowSpan="2"/>
- <TextBlock Text="Создание заказа" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10,10,0,0" Grid.Row="1" FontSize="20" TextAlignment="Center" Width="161"/>
- <Button Content="Создание потребителей" HorizontalAlignment="Left" Margin="10,52,0,0" Grid.Row="1" VerticalAlignment="Top" Width="161" Height="44" Click="ConsumerCreation_Click"/>
- <Button Content="Создание заказа" HorizontalAlignment="Left" Margin="10,138,0,0" Grid.Row="1" VerticalAlignment="Top" Width="161" Height="44" Click="OrderCreation_Click"/>
- <TextBlock Text="↓" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10,101,0,0" Grid.Row="1" FontSize="24" TextAlignment="Center" Width="161"/>
- </Grid>
- </Page>
|