17 lines
1011 B
Plaintext
17 lines
1011 B
Plaintext
|
<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="demko_term.MainWindow"
|
||
|
Title="demko_term">
|
||
|
<StackPanel Spacing="5" VerticalAlignment="Center" HorizontalAlignment="Center">
|
||
|
<TextBox x:Name="LoginTextBox" Width="200" Watermark="Логин"/>
|
||
|
<TextBox x:Name="PasswordTextBox" Width="200" Watermark="Пароль"/>
|
||
|
<StackPanel Orientation="Horizontal" Spacing="5">
|
||
|
<Button Click="AuthButton_OnClick" Content="Вход"/>
|
||
|
<CheckBox Content="Показать пароль" HorizontalAlignment="Right" Name="ShowPasswordCheckBox" Checked="ShowPasswordCheckBox_OnCheck" Unchecked="ShowPasswordCheckBox_OnUncheck"/>
|
||
|
</StackPanel>
|
||
|
</StackPanel>
|
||
|
</Window>
|