26 lines
1.0 KiB
XML
26 lines
1.0 KiB
XML
<Window x:Class="EmployeeManagmentView.PhysicalPerson.ViewPhysicalPersonsWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Список физических лиц"
|
|
Height="500" Width="600"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterScreen"
|
|
Background="#0D2D4F">
|
|
|
|
<Grid>
|
|
<!-- Заголовок окна -->
|
|
<TextBlock Text="Список физических лиц"
|
|
HorizontalAlignment="Center" VerticalAlignment="Top"
|
|
FontSize="18" FontWeight="Bold"
|
|
Foreground="#FFFFFF"
|
|
Margin="0,20,0,0" />
|
|
|
|
<!-- Таблица для отображения -->
|
|
<DataGrid x:Name="PhysicalPersonsDataGrid"
|
|
Margin="20,60,20,20"
|
|
AutoGenerateColumns="True"
|
|
Background="#FFFFFF"
|
|
Foreground="#000000" />
|
|
</Grid>
|
|
</Window>
|