12345678910111213141516171819202122232425262728293031 |
- <Page x:Class="AvtorizationKuripko.Pages.AuthPage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:AvtorizationKuripko.Pages"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="Авторизация">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="50"/>
- <ColumnDefinition Width="170"/>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="319"/>
- <RowDefinition Height="54"/>
- </Grid.RowDefinitions>
- <Label Content="Логин" Grid.Row="1" Grid.Column="1" Margin="0,0,0,290"/>
- <TextBox x:Name="TextBoxLogin" HorizontalAlignment="Left" Height="29" TextWrapping="Wrap" VerticalAlignment="Top" Width="170" Grid.Row="1" Grid.Column="2"/>
- <Label Content="Пароль" Grid.Column="1" HorizontalAlignment="Left" Margin="0,45,0,0" Grid.Row="1" VerticalAlignment="Top" Width="50" Height="30"/>
- <Button Click="ButtonEnter_OnClick" Content="Вход" Grid.Column="2" HorizontalAlignment="Left" Margin="0,102,0,0" Grid.Row="1" VerticalAlignment="Top" Width="170" Height="29"/>
- <Button Content="Регистрация" Grid.Column="2" Margin="0,151,0,0" Grid.Row="1" VerticalAlignment="Top" Height="32" Click="ButtonRegistration_OnClick"/>
- <PasswordBox x:Name="PasswordBox" Grid.Column="2" HorizontalAlignment="Left" Margin="0,45,0,0" Grid.Row="1" VerticalAlignment="Top" Height="30" Width="170"/>
- </Grid>
- </Page>
|