2025-01-22 13:34:31 +00:00
|
|
|
<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"
|
2025-01-28 12:20:48 +00:00
|
|
|
mc:Ignorable="d" d:DesignWidth="400" d:DesignHeight="450"
|
|
|
|
Width="700"
|
|
|
|
Height="700"
|
2025-01-22 13:34:31 +00:00
|
|
|
x:Class="demo_2023.Additem"
|
2025-01-28 12:20:48 +00:00
|
|
|
x:CompileBindings="False"
|
|
|
|
Title="demo_2023">
|
2025-01-22 13:34:31 +00:00
|
|
|
|
2025-01-28 12:20:48 +00:00
|
|
|
<DockPanel>
|
|
|
|
|
|
|
|
|
|
|
|
<TextBlock Text="Регистрация жюри/ модератора" DockPanel.Dock="Top" HorizontalAlignment="Center" Margin="0,10,0,0"/>
|
|
|
|
|
|
|
|
|
|
|
|
<Grid>
|
|
|
|
|
|
|
|
<StackPanel Orientation="Vertical" HorizontalAlignment="Left" Spacing="5" Margin="20,0,0,0">
|
|
|
|
<TextBlock Text="Id Number:"/>
|
|
|
|
<TextBox Width="200" HorizontalAlignment="Left"/>
|
|
|
|
<TextBlock Text="ФИО:"/>
|
|
|
|
<TextBox Width="200" HorizontalAlignment="Left"/>
|
|
|
|
<TextBlock Text="Пол:"/>
|
|
|
|
<ComboBox Width="200" HorizontalAlignment="Left"/>
|
|
|
|
<TextBlock Text="Email:"/>
|
|
|
|
<TextBox Width="200" HorizontalAlignment="Left"/>
|
|
|
|
<TextBlock Text="Телефон:"/>
|
|
|
|
<TextBox Width="200" HorizontalAlignment="Left"/>
|
|
|
|
<TextBlock Text="Направление:"/>
|
|
|
|
<TextBox Width="200" HorizontalAlignment="Left"/>
|
|
|
|
<CheckBox Content="Прикрепить к мероприятию" HorizontalAlignment="Left"/>
|
|
|
|
<TextBlock Text="Мероприятие:"/>
|
|
|
|
<ComboBox Width="200" HorizontalAlignment="Left"/>
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<StackPanel Orientation="Vertical" HorizontalAlignment="Right" Spacing="5" >
|
|
|
|
<TextBlock Text="Пароль:"/>
|
|
|
|
<TextBox Width="200" Watermark="Password" Text="{Binding Password}"/>
|
|
|
|
<TextBlock Text="Повтор пароля:"/>
|
|
|
|
<TextBox Width="200" Text="{Binding ConfirmPassword}"/>
|
|
|
|
<CheckBox Content="Видимый пароль" />
|
|
|
|
<Button Content="Oк" Width="100" HorizontalAlignment="Center" />
|
|
|
|
<Button Content="Отмена" Width="100" HorizontalAlignment="Center" />
|
|
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
</DockPanel>
|
2025-01-22 13:34:31 +00:00
|
|
|
</Window>
|