MainMenu.xaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334
  1. <Window x:Class="RKISPATTERN.View.MainMenu"
  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:RKISPATTERN.View"
  7. mc:Ignorable="d"
  8. Title="Menu" Height="450" Width="800">
  9. <Grid>
  10. <Grid.Background>
  11. <ImageBrush ImageSource="/View/ImageProj.jpg"/>
  12. </Grid.Background>
  13. <Grid.RowDefinitions>
  14. <RowDefinition Height="32*"/>
  15. <RowDefinition Height="40*"/>
  16. <RowDefinition Height="117*"/>
  17. <RowDefinition Height="43*"/>
  18. <RowDefinition Height="202*"/>
  19. </Grid.RowDefinitions>
  20. <Grid.ColumnDefinitions>
  21. <ColumnDefinition Width="259*"/>
  22. <ColumnDefinition Width="283*"/>
  23. <ColumnDefinition Width="258*"/>
  24. </Grid.ColumnDefinitions>
  25. <Label Grid.Column="1" Content="Menu" HorizontalContentAlignment="Center" FontSize="24" Margin="0,32,0,0" Grid.RowSpan="2" FontWeight="Bold" Foreground="#DDFFFFFF">
  26. <Label.Background>
  27. <ImageBrush/>
  28. </Label.Background>
  29. </Label>
  30. <Button Grid.Row="3" Grid.Column="0" Content="Профиль" Background="#FFA460A4" FontSize="16" Command="{Binding OpenProfile}"/>
  31. <Button Grid.Row="3" Grid.Column="1" Content="Пользователи" Background="#FF70E113" FontSize="16" Command="{Binding OpenUsers}"/>
  32. <Button Grid.Row="3" Grid.Column="2" Content="Задачи" Background="#FF00D0FF" FontSize="16" Command="{Binding OpenProblems}" Cursor="Hand"/>
  33. </Grid>
  34. </Window>