2024-11-26 13:03:36 +04:00
|
|
|
|
<Window x:Class="EmployeeManager.View.MainWindow"
|
2024-11-26 12:51:52 +04:00
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2024-11-26 13:37:12 +04:00
|
|
|
|
Title="Отдел кадров УлГТУ" Height="450" Width="800" Background="#0D2D4F">
|
|
|
|
|
|
|
|
|
|
|
2024-11-26 12:51:52 +04:00
|
|
|
|
<Grid>
|
2024-11-26 13:37:12 +04:00
|
|
|
|
<!-- Заголовок -->
|
|
|
|
|
<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>
|
2024-11-26 12:51:52 +04:00
|
|
|
|
</Grid>
|
|
|
|
|
</Window>
|