1234567891011121314151617181920212223242526 |
- <Window x:Class="RegiAut.AuthorizationWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- 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"
- xmlns:local="clr-namespace:RegiAut"
- mc:Ignorable="d"
- Title="Авторизация" Height="400" Width="400">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <TextBlock Text="Логин"/>
- <TextBlock Text="Пароль" Grid.Row="1"/>
- <TextBox Name="login" Grid.Column="1" Grid.Row="0"/>
- <PasswordBox Name="password" Grid.Column="1" Grid.Row="1"/>
- <Button Grid.Row="2" Grid.Column="0" Content="Войти" Click="AuthorizationClick"/>
- <Button Grid.Row="2" Grid.Column="1" Content="Зарегистрироваться" Click="RegistrationClick"/>
- </Grid>
- </Window>
|