31 lines
1.6 KiB
XML
31 lines
1.6 KiB
XML
<Page x:Class="OfficeFlow.Pages.EmployeePages.EmployeesPositionsPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:OfficeFlow.Pages.EmployeePages"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800"
|
|
Title="Настройка должностей">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition Height="auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<DataGrid x:Name="DGData" AutoGenerateColumns="False" CellEditEnding="DGData_CellEditEnding" PreviewKeyDown="DGData_PreviewKeyDown">
|
|
<DataGrid.Columns>
|
|
<DataGridTextColumn Header="Название должности*" Binding="{Binding PositionName, UpdateSourceTrigger=PropertyChanged}"/>
|
|
<DataGridTextColumn Header="Описание" Binding="{Binding PositionDescription, UpdateSourceTrigger=PropertyChanged}" Width="auto"/>
|
|
<DataGridTextColumn
|
|
Header="Количество сотрудников"
|
|
Binding="{Binding Employees, Converter={StaticResource CountConverter}}"
|
|
IsReadOnly="True"
|
|
/>
|
|
</DataGrid.Columns>
|
|
</DataGrid>
|
|
<Button x:Name="BBack" Grid.Row="1" Content="Назад" Click="BBack_Click"/>
|
|
</Grid>
|
|
</Page>
|