2024-12-01 16:34:36 +04:00
|
|
|
<Window x:Class="EmployeeManagmentView.Employee.Vacation.DeleteVacationWindow"
|
2024-12-01 17:32:41 +04:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
2024-12-01 16:34:36 +04:00
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2024-12-01 17:32:41 +04:00
|
|
|
Title="Управление отпусками"
|
|
|
|
Height="600" Width="800"
|
|
|
|
ResizeMode="NoResize"
|
|
|
|
WindowStartupLocation="CenterScreen"
|
|
|
|
Background="#0D2D4F">
|
|
|
|
|
2024-12-01 16:34:36 +04:00
|
|
|
<Grid>
|
2024-12-01 17:32:41 +04:00
|
|
|
<!-- Заголовок окна -->
|
|
|
|
<TextBlock Text="Список отпусков"
|
|
|
|
HorizontalAlignment="Center" VerticalAlignment="Top"
|
|
|
|
FontSize="18" FontWeight="Bold"
|
|
|
|
Foreground="White"
|
|
|
|
Margin="0,20,0,0" />
|
|
|
|
|
|
|
|
<!-- Поле поиска -->
|
|
|
|
<TextBox x:Name="SearchTextBox"
|
|
|
|
Width="560"
|
|
|
|
VerticalAlignment="Top"
|
|
|
|
Margin="0,60,0,0"
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
Style="{StaticResource RoundedTextBoxStyle}"
|
|
|
|
TextChanged="SearchTextBox_TextChanged" />
|
|
|
|
|
|
|
|
<!-- Таблица отпусков -->
|
|
|
|
<DataGrid x:Name="VacationsDataGrid"
|
|
|
|
Margin="20,100,20,80"
|
|
|
|
AutoGenerateColumns="False"
|
|
|
|
Style="{StaticResource RoundedDataGridStyle}">
|
|
|
|
<DataGrid.Columns>
|
|
|
|
<DataGridTextColumn Header="Дата начала" Binding="{Binding StartData, StringFormat=dd.MM.yyyy}" Width="*" />
|
|
|
|
<DataGridTextColumn Header="Дата окончания" Binding="{Binding EndData, StringFormat=dd.MM.yyyy}" Width="*" />
|
2024-12-02 23:48:58 +04:00
|
|
|
<DataGridTextColumn Header="Заврешен" Binding="{Binding Passed}" Width="*" />
|
2024-12-01 17:32:41 +04:00
|
|
|
<DataGridTextColumn Header="Сотрудник" Binding="{Binding EmployeeName}" Width="*" />
|
|
|
|
</DataGrid.Columns>
|
|
|
|
</DataGrid>
|
|
|
|
|
|
|
|
<!-- Удалить -->
|
|
|
|
<Button Content="Удалить"
|
|
|
|
HorizontalAlignment="Center" VerticalAlignment="Bottom"
|
|
|
|
Width="150" Height="40"
|
|
|
|
Margin="0,0,0,20"
|
|
|
|
Background="#004890"
|
|
|
|
Foreground="White"
|
|
|
|
Style="{StaticResource RoundedButtonStyle}"
|
|
|
|
Click="DeleteButton_Click" />
|
2024-12-01 16:34:36 +04:00
|
|
|
</Grid>
|
2024-12-01 17:32:41 +04:00
|
|
|
</Window>
|