12345678910111213141516171819202122232425262728293031323334 |
- <Window x:Class="RKISPATTERN.View.MainMenu"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:RKISPATTERN.View"
- mc:Ignorable="d"
- Title="Menu" Height="450" Width="800">
- <Grid>
- <Grid.Background>
- <ImageBrush ImageSource="/View/ImageProj.jpg"/>
- </Grid.Background>
- <Grid.RowDefinitions>
- <RowDefinition Height="32*"/>
- <RowDefinition Height="40*"/>
- <RowDefinition Height="117*"/>
- <RowDefinition Height="43*"/>
- <RowDefinition Height="202*"/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="259*"/>
- <ColumnDefinition Width="283*"/>
- <ColumnDefinition Width="258*"/>
- </Grid.ColumnDefinitions>
- <Label Grid.Column="1" Content="Menu" HorizontalContentAlignment="Center" FontSize="24" Margin="0,32,0,0" Grid.RowSpan="2" FontWeight="Bold" Foreground="#DDFFFFFF">
- <Label.Background>
- <ImageBrush/>
- </Label.Background>
- </Label>
- <Button Grid.Row="3" Grid.Column="0" Content="Профиль" Background="#FFA460A4" FontSize="16" Command="{Binding OpenProfile}"/>
- <Button Grid.Row="3" Grid.Column="1" Content="Пользователи" Background="#FF70E113" FontSize="16" Command="{Binding OpenUsers}"/>
- <Button Grid.Row="3" Grid.Column="2" Content="Задачи" Background="#FF00D0FF" FontSize="16" Command="{Binding OpenProblems}" Cursor="Hand"/>
- </Grid>
- </Window>
|