Demka_kur/OknaFunciy/AddSotrudnikWindow.axaml
2025-03-05 12:12:58 +03:00

20 lines
998 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="400"
x:Class="Demka_Snova_1.OknaFunciy.AddSotrudnikWindow"
Title="Добавление сотрудника"
Width="400"
Height="400">
<Grid VerticalAlignment="Top" HorizontalAlignment="Center">
<StackPanel Margin="10">
<TextBox x:Name="FIO" Watermark="ФИО" />
<TextBox x:Name="Pozition" Watermark="Должность" />
<TextBox x:Name="Login" Watermark="Логин" />
<TextBox x:Name="Pass" Watermark="Пароль" />
<Button x:Name="SaveButton" Content="Сохранить" Margin="0,10" Click="SaveSotrudnik" />
<Button x:Name="CancelButton" Content="Отмена" Click="Cancel" />
</StackPanel>
</Grid>
</Window>