2024-11-12 12:21:29 +04:00
|
|
|
|
<Window x:Class="EmployeeManagmentView.MainWindow"
|
2024-11-26 22:52:43 +04:00
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
2024-11-12 12:21:29 +04:00
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2024-11-26 22:52:43 +04:00
|
|
|
|
Title="Отдел кадров УлГТУ" Height="450" Width="800" Background="#0D2D4F"
|
|
|
|
|
MinWidth="400" MinHeight="300"
|
2024-11-27 01:21:37 +04:00
|
|
|
|
WindowStartupLocation="CenterScreen"
|
2024-11-26 22:52:43 +04:00
|
|
|
|
MaxWidth="{Binding Source={x:Static SystemParameters.PrimaryScreenWidth}}"
|
|
|
|
|
MaxHeight="{Binding Source={x:Static SystemParameters.PrimaryScreenHeight}}">
|
2024-11-26 22:35:12 +04:00
|
|
|
|
|
|
|
|
|
|
2024-11-12 12:21:29 +04:00
|
|
|
|
<Grid>
|
2024-11-26 22:35: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"
|
2024-12-01 15:14:20 +04:00
|
|
|
|
Style="{StaticResource RoundedButtonStyle}" Click="OpenEmployeeManagementWindow"/>
|
2024-11-26 22:35:12 +04:00
|
|
|
|
<!-- Кнопка 2 -->
|
|
|
|
|
<Button Content="Работа с физ. лицами" Width="200" Height="50" Margin="0,10"
|
|
|
|
|
Background="#004890" Foreground="#FFFFFF" FontSize="16"
|
|
|
|
|
Style="{StaticResource RoundedButtonStyle}" Click="OpenPhysicalPersonManagementWindow"/>
|
2024-11-12 13:07:37 +04:00
|
|
|
|
</StackPanel>
|
2024-11-12 12:21:29 +04:00
|
|
|
|
</Grid>
|
2024-11-26 22:35:12 +04:00
|
|
|
|
</Window>
|