dmeo040225/MainWindow.axaml
2025-02-04 16:58:34 +03:00

17 lines
1.0 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="dmeo040225.MainWindow"
Title="dmeo040225">
<DockPanel Background="Bisque">
<StackPanel Spacing="15" Width="200" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBox Watermark="login" x:Name="LoginName" Background="LightGray"/>
<TextBox Watermark="password" x:Name="PasswordName" Background="LightGray"/>
<Button x:Name="TogglePasswordVisibility" Content="Show" Background="LightGray" Click="TogglePasswordVisibilityClick"/>
<Button Content="AUTH" Background="LightGray" Click="Authorization"/>
</StackPanel>
</DockPanel>
</Window>