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

33 lines
1.4 KiB
XML

<Window x:Class="EmployeeManagmentView.MainWindow"
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"
mc:Ignorable="d"
Title="Employee Management System"
Height="450" Width="800">
<Grid>
<StackPanel>
<TextBlock Text="Система управления сотрудниками"
FontSize="24"
FontWeight="Bold"
Margin="10"/>
<Button Content="Просмотр сотрудников"
Width="200"
Height="40"
Margin="10"
Click="ViewEmployees_Click"/>
<Button Content="Управление зарплатами"
Width="200"
Height="40"
Margin="10"
Click="ManageSalaries_Click"/>
<Button Content="Управление отпусками"
Width="200"
Height="40"
Margin="10"
Click="ManageVacations_Click"/>
</StackPanel>
</Grid>
</Window>