AuthPage.xaml 1.7 KB

12345678910111213141516171819202122232425
  1. <Page x:Class="IS31Nabievv.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:IS31Nabievv.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="AuthPage">
  10. <Grid>
  11. <Grid.ColumnDefinitions>
  12. <ColumnDefinition Width="5*"/>
  13. <ColumnDefinition Width="9*"/>
  14. <ColumnDefinition Width="6*"/>
  15. </Grid.ColumnDefinitions>
  16. <Label Content="Логин" HorizontalAlignment="Right" Margin="0,63,231,0" VerticalAlignment="Top" Height="22" Width="72" Grid.Column="1"/>
  17. <TextBox x:Name="TextBoxLogin" HorizontalAlignment="Left" Height="22" Margin="128.899,63,0,0" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="192" TextChanged="TextBox_TextChanged" Grid.Column="1"/>
  18. <Label Content="Пароль" HorizontalAlignment="Right" Margin="0,90,231,0" VerticalAlignment="Top" Height="22" Width="72" Grid.Column="1"/>
  19. <PasswordBox x:Name="PasswordBox" HorizontalAlignment="Left" Height="22" Margin="128.899,90,0,0" VerticalAlignment="Top" Width="192" Grid.Column="1"/>
  20. <Button Content="Вход" HorizontalAlignment="Left" Margin="128.899,117,0,0" VerticalAlignment="Top" Width="192" Height="22" Grid.Column="1" Click="Button_Click"/>
  21. <Button Content="Регистрация" HorizontalAlignment="Left" Margin="128.899,144,0,0" VerticalAlignment="Top" Width="192" Height="22" Grid.Column="1"/>
  22. </Grid>
  23. </Page>