AuthPage.xaml 1.9 KB

12345678910111213141516171819202122232425262728293031
  1. <Page x:Class="KachaevPR13.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:KachaevPR13.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="225"/>
  14. <RowDefinition Height="*"/>
  15. </Grid.RowDefinitions>
  16. <Grid.ColumnDefinitions>
  17. <ColumnDefinition Width="*"/>
  18. <ColumnDefinition Width="50"/>
  19. <ColumnDefinition Width="170"/>
  20. <ColumnDefinition Width="*"/>
  21. </Grid.ColumnDefinitions>
  22. <Label Content="Логин" Grid.Column="1" Grid.Row="1" Height="24" VerticalAlignment="Top"/>
  23. <TextBox x:Name="TextBoxLogin" HorizontalAlignment="Left" Height="23" Margin="0,1,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="170" Grid.Column="2" Grid.Row="1"/>
  24. <Label Content="Пароль" Grid.Column="1" HorizontalAlignment="Left" Margin="0,38,0,0" Grid.Row="1" VerticalAlignment="Top" Height="25" Width="50"/>
  25. <PasswordBox x:Name="Passwordbox" Grid.Column="2" HorizontalAlignment="Left" Margin="0,38,0,0" Grid.Row="1" VerticalAlignment="Top" RenderTransformOrigin="0.5,0.528" Width="170" Height="25"/>
  26. <Button Click="ButtonEnter_OnClick" Content="Вход" Grid.Column="2" HorizontalAlignment="Left" Margin="0,73,0,0" Grid.Row="1" VerticalAlignment="Top" Width="170"/>
  27. <Button Content="Регистрация" Grid.Column="2" HorizontalAlignment="Left" Margin="0,103,0,0" Grid.Row="1" VerticalAlignment="Top" Width="170" Click="ButtonRegistration_OnClick"/>
  28. </Grid>
  29. </Page>