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

30 lines
1.6 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<Window x:Class="EmployeeManagmentView.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"
MinWidth="400" MinHeight="300"
WindowStartupLocation="CenterScreen"
MaxWidth="{Binding Source={x:Static SystemParameters.PrimaryScreenWidth}}"
MaxHeight="{Binding Source={x:Static SystemParameters.PrimaryScreenHeight}}">
<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}" Click="OpenEmployeeManagementWindow"/>
<!-- Кнопка 2 -->
<Button Content="Работа с физ. лицами" Width="200" Height="50" Margin="0,10"
Background="#004890" Foreground="#FFFFFF" FontSize="16"
Style="{StaticResource RoundedButtonStyle}" Click="OpenPhysicalPersonManagementWindow"/>
</StackPanel>
</Grid>
</Window>