AuthPage.xaml 1.5 KB

123456789101112131415161718192021222324
  1. <Page x:Class="Проект_КнязеваАвторизация.NewFolder1.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:Проект_КнязеваАвторизация.NewFolder1"
  7. mc:Ignorable="d"
  8. d:DesignHeight="300" d:DesignWidth="300"
  9. Title="Авторизация">
  10. <Grid>
  11. <Grid.ColumnDefinitions>
  12. <ColumnDefinition Width="61*"/>
  13. <ColumnDefinition Width="14*"/>
  14. </Grid.ColumnDefinitions>
  15. <TextBox HorizontalAlignment="Left" Height="26" Margin="93,21,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="120"/>
  16. <Label Content="Логин" HorizontalAlignment="Left" Margin="19,21,0,0" VerticalAlignment="Top" Background="White" Width="51"/>
  17. <Label Content="Пароль" HorizontalAlignment="Left" Margin="19,64,0,0" VerticalAlignment="Top" Background="White"/>
  18. <PasswordBox HorizontalAlignment="Left" Margin="93,64,0,0" VerticalAlignment="Top" Width="120" Height="26"/>
  19. <Button Content="Вход" HorizontalAlignment="Left" Margin="117,108,0,0" VerticalAlignment="Top" Width="75"/>
  20. <Button Content="Регистрация" HorizontalAlignment="Left" Margin="117,141,0,0" VerticalAlignment="Top" Width="75"/>
  21. </Grid>
  22. </Page>