AuthPage.xaml 1.9 KB

1234567891011121314151617181920212223242526272829303132
  1. <Page x:Class="Kachaev_PR13.Pages.AuthPage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:Kachaev_PR13.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Авторизация">
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="*"/>
  13. <RowDefinition Height="150"/>
  14. <RowDefinition Height="*"/>
  15. </Grid.RowDefinitions>
  16. <Grid.ColumnDefinitions>
  17. <ColumnDefinition Width="*"/>
  18. <ColumnDefinition Width="50"/>
  19. <ColumnDefinition Width="190"/>
  20. <ColumnDefinition Width="*"/>
  21. </Grid.ColumnDefinitions>
  22. <Label Content="Логин" Margin="0,7,0,0" VerticalAlignment="Top" Grid.Column="1" Height="21" Grid.Row="1"/>
  23. <TextBox x:Name="TextBoxLogin" HorizontalAlignment="Left" Height="23" Margin="0,5,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="190" Grid.Column="2" Grid.Row="1" TextChanged="TextBoxLogin_TextChanged"/>
  24. <Label Content="Пароль" Grid.Column="1" Margin="0,31,0,0" VerticalAlignment="Top" Height="21" Grid.Row="1"/>
  25. <PasswordBox x:Name="PasswordBox" Grid.Column="2" HorizontalAlignment="Left" Height="23" Margin="0,31,0,0" VerticalAlignment="Top" Width="190" Grid.Row="1"/>
  26. <Button Click="ButtonEnter_OnClick" Grid.Column="2" VerticalAlignment="Bottom" Grid.Row="1" Margin="0,0,0,65" Height="20" Content="вход"/>
  27. <Button Content="Регистрация" Grid.Column="2" HorizontalAlignment="Left" VerticalAlignment="Top" Width="190" Grid.Row="1" Margin="0,90,0,0" Height="22" Click="ButtonRegistration_OnClick"/>
  28. </Grid>
  29. </Page>