54 lines
1.7 KiB
XML
54 lines
1.7 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"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="600"
|
|
x:Class="DemoService.MainWindow"
|
|
Title="Сервис «Подай на 16»"
|
|
WindowStartupLocation="CenterScreen"
|
|
Width="800" Height="600">
|
|
<StackPanel Orientation="Vertical"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center">
|
|
<TextBlock HorizontalAlignment="Center"
|
|
Margin="0 0 0 50"
|
|
FontSize="40"
|
|
FontWeight="DemiBold">
|
|
Подай на 16
|
|
</TextBlock>
|
|
<Button Name="UserButton"
|
|
Click="UserLogIn"
|
|
HorizontalAlignment="Center"
|
|
Margin="0 0 0 30"
|
|
BorderBrush="Chocolate"
|
|
BorderThickness="1">
|
|
<TextBlock HorizontalAlignment="Center"
|
|
VerticalAlignment="Center">
|
|
Войти как пользователь
|
|
</TextBlock>
|
|
</Button>
|
|
<TextBlock Name="PasswordError"
|
|
HorizontalAlignment="Center"
|
|
Margin="0 0 0 10"
|
|
Foreground="Red">
|
|
Неверный код
|
|
</TextBlock>
|
|
<TextBox Name="Password"
|
|
Watermark="Код администратора"
|
|
HorizontalAlignment="Center"
|
|
Width="200"
|
|
Margin="0 0 0 5"/>
|
|
<Button Name="AdminButton"
|
|
Click="AdminLogIn"
|
|
HorizontalAlignment="Center"
|
|
Width="200"
|
|
BorderBrush="Chocolate"
|
|
BorderThickness="1">
|
|
<TextBlock HorizontalAlignment="Center"
|
|
VerticalAlignment="Center">
|
|
Войти как администратор
|
|
</TextBlock>
|
|
</Button>
|
|
</StackPanel>
|
|
</Window>
|