kursovaya/MainWindow.axaml
2025-04-11 13:14:28 +03:00

21 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="kursovaya.MainWindow"
Title="kursovaya">
<DockPanel Background="Bisque">
<Grid>
<Border Width="200" HorizontalAlignment="Center">
<StackPanel Spacing="10" VerticalAlignment="Center">
<TextBox x:Name="LoginName" Watermark="login"/>
<TextBox x:Name="PasswordName" Watermark="password"/>
<Button x:Name="TogglePasswordVisibility" Content="Show" Background="LightGray" Click="TogglePasswordVisibilityClick"/>
<Button Click="Button_OnClick" Foreground="Black" Background="LightGray" Content="Войти"/>
<TextBlock x:Name="ErrorMessage" Foreground="Red" FontSize="14" Height="40" Width="300" TextWrapping="Wrap" TextAlignment="Center"/>
</StackPanel>
</Border>
</Grid>
</DockPanel>
</Window>