2025-01-22 13:32:07 +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"
|
|
|
|
|
mc:Ignorable="d" d:DesignWidth="1200" d:DesignHeight="800"
|
|
|
|
|
x:Class="AvaloniaApplication3.Registrator"
|
|
|
|
|
Title="Registrator">
|
|
|
|
|
<StackPanel>
|
|
|
|
|
<TextBlock Text="Регистрация жюри/модеры" FontSize="24" HorizontalAlignment="Center" Margin="10,20"/>
|
|
|
|
|
<TextBlock Text="Уникальный ID: " FontSize="16" Margin="10"/>
|
|
|
|
|
<TextBlock Name="Id" FontSize="16" Margin="10"/>
|
|
|
|
|
<StackPanel>
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<TextBlock Text="Fio:" VerticalAlignment="Center" Margin="10"/>
|
|
|
|
|
<TextBox Watermark="" HorizontalAlignment="Stretch" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<TextBlock Text="Email:" VerticalAlignment="Center" Margin="10"/>
|
|
|
|
|
<TextBox Watermark="" HorizontalAlignment="Stretch" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<TextBlock Text="Телефон" VerticalAlignment="Center" Margin="10"/>
|
|
|
|
|
<TextBox Watermark="" HorizontalAlignment="Stretch" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<TextBlock Text="Роль" VerticalAlignment="Center" Margin="10"/>
|
|
|
|
|
<TextBox Watermark="" HorizontalAlignment="Stretch" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<TextBlock Text="Событие" VerticalAlignment="Center" Margin="10"/>
|
|
|
|
|
<TextBox Watermark="" HorizontalAlignment="Stretch" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<TextBlock Text="Напровление" VerticalAlignment="Center" Margin="10"/>
|
2025-01-28 10:42:47 +00:00
|
|
|
|
<!-- <TextBox Watermark="" HorizontalAlignment="Stretch" /> -->
|
2025-01-22 13:32:07 +00:00
|
|
|
|
|
|
|
|
|
<ComboBox x:Name="Vibor" SelectedIndex="0"
|
2025-01-28 10:56:36 +00:00
|
|
|
|
Width="100" MaxDropDownHeight="300">
|
2025-01-22 13:32:07 +00:00
|
|
|
|
<ComboBox.ItemTemplate>
|
|
|
|
|
<DataTemplate>
|
2025-01-28 10:42:47 +00:00
|
|
|
|
<TextBlock Text="{Binding }" FontFamily="{Binding}" />
|
2025-01-22 13:32:07 +00:00
|
|
|
|
</DataTemplate>
|
|
|
|
|
</ComboBox.ItemTemplate>
|
|
|
|
|
</ComboBox>
|
|
|
|
|
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<TextBlock Text="Пол (M/F):" VerticalAlignment="Center" Margin="10"/>
|
|
|
|
|
<TextBox Watermark="" HorizontalAlignment="Stretch" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<CheckBox Content="Active" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<TextBlock Text="Пароль" VerticalAlignment="Center" Margin="10"/>
|
|
|
|
|
<TextBox Watermark="Pass" HorizontalAlignment="Stretch" />
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<TextBlock Text="Повтори пароль" VerticalAlignment="Center" Margin="10"/>
|
|
|
|
|
<TextBox Watermark="Re-Pass" HorizontalAlignment="Stretch" />
|
2025-01-29 07:17:44 +00:00
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<Button Content="Mein" Click="ClickToGrant"/>
|
2025-01-22 13:32:07 +00:00
|
|
|
|
</StackPanel>
|
2025-01-28 10:42:47 +00:00
|
|
|
|
<!-- <Image Source="file:///home/class_student/Desktops/Desktop1/КОД 1.2 2023-2025 ВАРИАНТ 6/Вариант 6/Ресурсы/Модераторы_import/foto15.jpg" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="10"/>
|
|
|
|
|
-->
|
2025-01-22 13:32:07 +00:00
|
|
|
|
</StackPanel>
|
|
|
|
|
</Window>
|