18 lines
892 B
XML
18 lines
892 B
XML
<Window xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d" d:DesignWidth="400" d:DesignHeight="300"
|
|
x:Class="Demka_Snova_1.OknaFunciy.ChangeRoleWindow"
|
|
Title="Изменение роли"
|
|
Width="400"
|
|
Height="300">
|
|
<Grid VerticalAlignment="Top" HorizontalAlignment="Center">
|
|
<StackPanel Margin="10">
|
|
<TextBox x:Name="FiO" Watermark="ФИО" IsReadOnly="True" />
|
|
<TextBox x:Name="Position" Watermark="Должность" />
|
|
<Button x:Name="SaveButton" Content="Сохранить" Margin="0,10" Click="SavePosition" />
|
|
<Button x:Name="CancelButton" Content="Отмена" Click="Cancel" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window> |