MainWindow.xaml 1.6 KB

123456789101112131415161718192021222324
  1. <Window x:Class="olimp8.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:olimp8"
  7. mc:Ignorable="d"
  8. Title="MainWindow" Height="450" Width="600">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="70"></RowDefinition>
  12. <RowDefinition Height="*"></RowDefinition>
  13. <RowDefinition Height="50"></RowDefinition>
  14. </Grid.RowDefinitions>
  15. <Rectangle Fill="BlueViolet"></Rectangle>
  16. <Label x:Name="LoginLabel" VerticalAlignment="Center" HorizontalAlignment="Left" FontSize="20" Foreground="AliceBlue"></Label>
  17. <StackPanel Grid.Row="1" Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10">
  18. <Button Width="200" Height="50" Content="Сотрудники" FontSize="20" Foreground="BlueViolet" Background="AliceBlue" Margin="10" Click="Button_Click_1"></Button>
  19. <Button Width="200" Height="50" Content="Смены" FontSize="20" Foreground="BlueViolet" Background="AliceBlue" Margin="10" Click="Button_Click"></Button>
  20. <Button Width="200" Height="50" Content="Заказы" FontSize="20" Foreground="BlueViolet" Background="AliceBlue" Margin="10"></Button>
  21. </StackPanel>
  22. <Rectangle Grid.Row="2" Fill="BlueViolet"></Rectangle>
  23. </Grid>
  24. </Window>