118 lines
6.6 KiB
XML
118 lines
6.6 KiB
XML
<Window x:Class="EmployeeManagmentView.Employee.EditEmployeeWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Редактирование сотрудника"
|
|
Height="704" Width="600"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterScreen"
|
|
Background="#0D2D4F">
|
|
|
|
<Grid Margin="0,0,0,-6">
|
|
<!-- Заголовок окна -->
|
|
<TextBlock Text="Редактирование сотрудника"
|
|
HorizontalAlignment="Center" VerticalAlignment="Top"
|
|
FontSize="18" FontWeight="Bold"
|
|
Foreground="#FFFFFF"
|
|
Margin="0,20,0,0" />
|
|
|
|
<!-- Основная сетка -->
|
|
<Grid Margin="0,70,0,60">
|
|
<Grid.RowDefinitions>
|
|
<!-- Поиск -->
|
|
<RowDefinition Height="2*" />
|
|
<!-- Редактирование -->
|
|
<RowDefinition Height="5*" />
|
|
<!-- Кнопка сохранения -->
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<!-- Блок поиска -->
|
|
<Grid Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,10">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- Поле для поиска сотрудников -->
|
|
<Label Grid.Row="0" Grid.Column="0"
|
|
Content="Поиск сотрудника" Foreground="White" HorizontalAlignment="Right" Margin="0,0,10,0" VerticalContentAlignment="Center"/>
|
|
<TextBox x:Name="SearchTextBox" Grid.Row="0" Grid.Column="1"
|
|
Width="250" Height="30"
|
|
Style="{StaticResource RoundedTextBoxStyle}"
|
|
Margin="0,5,0,5"
|
|
VerticalContentAlignment="Center"
|
|
ToolTip="Введите для поиска"
|
|
TextChanged="SearchTextBox_TextChanged"/>
|
|
|
|
<!-- Поле для выбора сотрудника -->
|
|
<Label Grid.Row="1" Grid.Column="0"
|
|
Content="Выберите сотрудника" Foreground="White" HorizontalAlignment="Right" Margin="0,0,10,0" VerticalContentAlignment="Center"/>
|
|
<ComboBox x:Name="EmployeeComboBox" Grid.Row="1" Grid.Column="1"
|
|
Width="400" Height="30"
|
|
VerticalAlignment="Top"
|
|
ToolTip="Выберите сотрудника"
|
|
SelectionChanged="EmployeeComboBox_SelectionChanged" />
|
|
</Grid>
|
|
|
|
<!-- Блок редактирования -->
|
|
<Grid Grid.Row="1" Margin="0,0,0,0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- Поля редактирования -->
|
|
<StackPanel Grid.Row="0" Grid.Column="0" Margin="10">
|
|
<Label Content="Название работы" Foreground="White" HorizontalAlignment="Center"/>
|
|
<TextBox x:Name="JobNameTextBox" Width="250" Height="40"
|
|
Style="{StaticResource RoundedTextBoxStyle}" ToolTip="Введите название работы" />
|
|
</StackPanel>
|
|
<StackPanel Grid.Row="0" Grid.Column="1" Margin="10">
|
|
<Label Content="Дата начала работы" Foreground="White" HorizontalAlignment="Center"/>
|
|
<DatePicker x:Name="StartJobPicker" Width="250" Height="40"
|
|
ToolTip="Выберите дату начала" />
|
|
</StackPanel>
|
|
<StackPanel Grid.Row="1" Grid.Column="0" Margin="10">
|
|
<Label Content="Дата окончания работы" Foreground="White" HorizontalAlignment="Center"/>
|
|
<DatePicker x:Name="EndJobPicker" Width="250" Height="40"
|
|
ToolTip="Выберите дату окончания" />
|
|
</StackPanel>
|
|
<StackPanel Grid.Row="1" Grid.Column="1" Margin="10">
|
|
<Label Content="Частичная занятость" Foreground="White" HorizontalAlignment="Center"/>
|
|
<TextBox x:Name="PartTimeTextBox" Width="250" Height="40"
|
|
Style="{StaticResource RoundedTextBoxStyle}" ToolTip="Укажите частичную занятость" />
|
|
</StackPanel>
|
|
<StackPanel Grid.Row="2" Grid.Column="0" Margin="10">
|
|
<Label Content="Ставка" Foreground="White" HorizontalAlignment="Center"/>
|
|
<TextBox x:Name="BidTextBox" Width="250" Height="40"
|
|
Style="{StaticResource RoundedTextBoxStyle}" ToolTip="Введите ставку" />
|
|
</StackPanel>
|
|
<StackPanel Grid.Row="2" Grid.Column="1" Margin="10">
|
|
<Label Content="Физическое лицо" Foreground="White" HorizontalAlignment="Center"/>
|
|
<ComboBox x:Name="PhysicalPersonComboBox" Width="250" Height="40"
|
|
ToolTip="Выберите физическое лицо" />
|
|
</StackPanel>
|
|
</Grid>
|
|
|
|
<!-- Кнопка сохранения -->
|
|
<Button Grid.Row="2" Content="Сохранить изменения"
|
|
Width="250" Height="40"
|
|
VerticalAlignment="Bottom"
|
|
Style="{StaticResource RoundedButtonStyle}"
|
|
Background="#004890" Foreground="#FFFFFF"
|
|
Click="SaveButton_Click"
|
|
HorizontalAlignment="Center" Margin="0,10,0,0"/>
|
|
</Grid>
|
|
</Grid>
|
|
</Window> |