52 lines
2.4 KiB
XML
52 lines
2.4 KiB
XML
<Window x:Class="EmployeeManagmentView.Employee.Salary.SalaryManagementWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Управление зарплатой"
|
|
Height="400" Width="400"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterScreen"
|
|
Background="#0D2D4F">
|
|
<Grid>
|
|
<!-- Заголовок окна -->
|
|
<TextBlock Text="Управление зарплатой"
|
|
HorizontalAlignment="Center" VerticalAlignment="Top"
|
|
FontSize="18" FontWeight="Bold"
|
|
Foreground="#FFFFFF"
|
|
Margin="0,20,0,0" />
|
|
|
|
<!-- Стек кнопок -->
|
|
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
<!-- Кнопка "Удаление зарплаты" -->
|
|
<Button Content="Удаление зарплаты"
|
|
Width="250" Height="40"
|
|
Margin="0,0,0,10"
|
|
Background="#004890" Foreground="#FFFFFF"
|
|
Style="{StaticResource RoundedButtonStyle}"
|
|
Click="OpenDeleteSalaryWindow"/>
|
|
|
|
<!-- Кнопка "Добавление зарплаты" -->
|
|
<Button Content="Добавление зарплаты"
|
|
Width="250" Height="40"
|
|
Margin="0,0,0,10"
|
|
Style="{StaticResource RoundedButtonStyle}"
|
|
Background="#004890" Foreground="#FFFFFF"
|
|
Click="OpenAddSalaryWindow"/>
|
|
|
|
<!-- Кнопка "Редактирование зарплаты" -->
|
|
<Button Content="Редактирование зарплаты"
|
|
Width="250" Height="40"
|
|
Margin="0,0,0,10"
|
|
Style="{StaticResource RoundedButtonStyle}"
|
|
Background="#004890" Foreground="#FFFFFF"
|
|
Click="OpenEditSalaryWindow"/>
|
|
|
|
<!-- Кнопка "Просмотр зарплат" -->
|
|
<Button Content="Просмотр зарплат"
|
|
Width="250" Height="40"
|
|
Style="{StaticResource RoundedButtonStyle}"
|
|
Background="#004890" Foreground="#FFFFFF"
|
|
Click="OpenViewSalaryWindow"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|