AuthPage.xaml 1.7 KB

123456789101112131415161718192021222324252627282930
  1. <Page x:Class="Project_Hozeev.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:Project_Hozeev.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="105"/>
  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.Row="1" Grid.Column="1" Height="25" VerticalAlignment="Top"/>
  23. <TextBox x:Name="TextBoxLogin" Height="25" TextWrapping="Wrap" Text="" Grid.Column="2" Grid.Row="1" Margin="0,0,0,80"/>
  24. <Label Content="Пароль" Grid.Row="1" Grid.Column="1" Height="25" VerticalAlignment="Top" Margin="0,30,0,0"/>
  25. <PasswordBox x:Name="PasswordBox" Grid.Column="2" Margin="0,30,0,0" Grid.Row="1" VerticalAlignment="Top" Height="25"/>
  26. <Button Click="ButtonEnter_OnClick" Content="Вход" Grid.Column="2" Margin="0,60,0,0" Grid.Row="1" VerticalAlignment="Top"/>
  27. <Button Click="ButtonEnter_OnClick" Content="Регистрация" Grid.Column="2" Margin="0,85,0,0" Grid.Row="1" VerticalAlignment="Top" />
  28. </Grid>
  29. </Page>