demo4/demo4_true/Auth.axaml
2025-01-28 19:06:43 +03:00

16 lines
811 B
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="demo4_true.Auth"
Title="Auth">
<DockPanel>
<StackPanel Spacing="5" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBox Width="250" x:Name="Id" Watermark="Id"/>
<TextBox Width="250" x:Name="Password" Watermark="Password"/>
<Button Click="AuthButton_OnClick" Content="Авторизация"/>
</StackPanel>
</DockPanel>
</Window>