MainMenu.xaml 1.5 KB

12345678910111213141516171819202122232425262728
  1. <Page x:Class="Logistics_application.MainMenu"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:Logistics_application"
  7. mc:Ignorable="d"
  8. d:DesignHeight="400" d:DesignWidth="600"
  9. Title="MainMenu">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="45"/>
  13. <RowDefinition Height="306"/>
  14. <RowDefinition Height="45"/>
  15. </Grid.RowDefinitions>
  16. <Frame NavigationUIVisibility="Hidden" Grid.Row="1" Name="MainFrame" Grid.RowSpan="2"/>
  17. <TextBlock Text="Создание заказа" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10,10,0,0" Grid.Row="1" FontSize="20" TextAlignment="Center" Width="161"/>
  18. <Button Content="Создание потребителей" HorizontalAlignment="Left" Margin="10,52,0,0" Grid.Row="1" VerticalAlignment="Top" Width="161" Height="44" Click="ConsumerCreation_Click"/>
  19. <Button Content="Создание заказа" HorizontalAlignment="Left" Margin="10,138,0,0" Grid.Row="1" VerticalAlignment="Top" Width="161" Height="44" Click="OrderCreation_Click"/>
  20. <TextBlock Text="↓" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="10,101,0,0" Grid.Row="1" FontSize="24" TextAlignment="Center" Width="161"/>
  21. </Grid>
  22. </Page>