48 lines
1.2 KiB
XML
48 lines
1.2 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="450"
|
|
x:Class="TovarV2.MainWindow"
|
|
Title="TovarV2">
|
|
<Grid
|
|
Background="Gray"
|
|
RowDefinitions="*"
|
|
ShowGridLines="false">
|
|
<StackPanel
|
|
Grid.Row="0"
|
|
Orientation="Vertical"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center">
|
|
<TextBlock
|
|
TextAlignment="Center"
|
|
FontSize="18"
|
|
Text="Вход">
|
|
</TextBlock>
|
|
<TextBlock
|
|
TextAlignment="Center"
|
|
Margin="0,10, 0, 10"
|
|
FontSize="12"
|
|
Text="Введите код своей роли">
|
|
</TextBlock>
|
|
<TextBox
|
|
TextAlignment="Left"
|
|
x:Name="CodeInput"
|
|
Watermark="Enter code">
|
|
</TextBox>
|
|
<Button
|
|
Background="Thistle"
|
|
Margin="0, 10, 0, 0"
|
|
HorizontalAlignment="Center"
|
|
HorizontalContentAlignment="Center"
|
|
Height="30"
|
|
Width="60"
|
|
Content="Войти"
|
|
Name="btnVhod"
|
|
Click="BtnVhod_OnClick">
|
|
</Button>
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
</Window>
|