PIbd-42_Kashin_M.I_CPO_Cour.../View/MainWindow.xaml

27 lines
1.3 KiB
Plaintext
Raw Normal View History

<Window x:Class="EmployeeManager.View.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Отдел кадров УлГТУ" Height="450" Width="800" Background="#0D2D4F">
<Grid>
<!-- Заголовок -->
<TextBlock Text="Отдел кадров УлГТУ"
HorizontalAlignment="Center" VerticalAlignment="Top"
FontSize="24" FontWeight="Bold"
Foreground="#FFFFFF" Margin="0,20,0,0" />
<!-- Центральный StackPanel -->
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Bottom" Margin="0,0,0,40">
<!-- Кнопка 1 -->
<Button Content="Работа с сотрудниками" Width="200" Height="50" Margin="0,10"
Background="#004890" Foreground="#FFFFFF" FontSize="16"
Style="{StaticResource RoundedButtonStyle}"/>
<!-- Кнопка 2 -->
<Button Content="Работа с физ. лицами" Width="200" Height="50" Margin="0,10"
Background="#004890" Foreground="#FFFFFF" FontSize="16"
Style="{StaticResource RoundedButtonStyle}"/>
</StackPanel>
</Grid>
</Window>