113 lines
3.3 KiB
XML
113 lines
3.3 KiB
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"
|
|
xmlns:captcha="clr-namespace:Captcha.Controls;assembly=Captcha"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="blagodat.MainWindow"
|
|
Title="blagodat">
|
|
|
|
|
|
<DockPanel>
|
|
<Grid VerticalAlignment="Center" HorizontalAlignment="Center">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- Заголовок "Login" -->
|
|
<TextBlock Text="Login"
|
|
FontSize="20"
|
|
FontWeight="Bold"
|
|
Grid.Column="0"
|
|
Grid.ColumnSpan="3"
|
|
Grid.Row="0"
|
|
HorizontalAlignment="Center"
|
|
Margin="0,0,0,20">
|
|
</TextBlock>
|
|
|
|
<!-- Поле для ввода имени пользователя -->
|
|
<TextBlock Text="UserName:"
|
|
Grid.Row="1"
|
|
Grid.Column="0"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Right"
|
|
Margin="0,0,10,0">
|
|
</TextBlock>
|
|
<TextBox
|
|
x:Name="loginBox"
|
|
Grid.Row="1"
|
|
Grid.Column="1"
|
|
Width="150"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Left">
|
|
</TextBox>
|
|
|
|
<!-- Поле для ввода пароля -->
|
|
<TextBlock Text="Password"
|
|
Grid.Row="2"
|
|
Grid.Column="0"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Right"
|
|
Margin="0,0,10,0">
|
|
</TextBlock>
|
|
<TextBox
|
|
x:Name="passwordBox"
|
|
Grid.Row="2"
|
|
Grid.Column="1"
|
|
Width="150"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Left"
|
|
PasswordChar="*">
|
|
</TextBox>
|
|
|
|
<!--<captcha:CaptchaControl Grid.Row="3"
|
|
Grid.Column="0"
|
|
Grid.ColumnSpan="3"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Margin="0,20,0,0">
|
|
</captcha:CaptchaControl>-->
|
|
|
|
<Button
|
|
Click="Button_Click"
|
|
Content="Login"
|
|
Background="Purple"
|
|
Grid.Row="3"
|
|
Grid.Column="0"
|
|
Grid.ColumnSpan="3"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Width="100"
|
|
Margin="0,20,0,0">
|
|
|
|
|
|
</Button>
|
|
|
|
<TextBlock
|
|
Grid.Row="4"
|
|
Grid.Column="1"
|
|
Padding="10"
|
|
|
|
x:Name="PasswordCheck"
|
|
Text=""
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
</DockPanel>
|
|
</Window>
|
|
|
|
|