AuthPage.xaml 2.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <Page x:Class="PR13Kudro.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:PR13Kudro.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="AuthPage">
  10. <Grid RenderTransformOrigin="0.58,0.216" Background="White">
  11. <Grid.ColumnDefinitions>
  12. <ColumnDefinition/>
  13. <ColumnDefinition Width="64*"/>
  14. <ColumnDefinition Width="94*"/>
  15. <ColumnDefinition Width="354*"/>
  16. <ColumnDefinition Width="287*"/>
  17. </Grid.ColumnDefinitions>
  18. <Grid.RowDefinitions>
  19. <RowDefinition Height="33*"/>
  20. <RowDefinition Height="301*"/>
  21. <RowDefinition Height="116*"/>
  22. </Grid.RowDefinitions>
  23. <Label Content="Логин" VerticalAlignment="Top" Height="42" Grid.Row="1" Grid.Column="2"/>
  24. <TextBox x:Name="TextBoxLogin" HorizontalAlignment="Left" Height="42" TextWrapping="Wrap" Text="" VerticalAlignment="Top" Width="345" TextChanged="TextBox_TextChanged" Grid.Column="3" Grid.Row="1"/>
  25. <Label Content="Пароль" HorizontalAlignment="Left" Margin="0,47,0,0" Grid.Row="1" VerticalAlignment="Top" Height="42" Width="94" Grid.Column="2"/>
  26. <Button Click="ButtonEnter_OnClick" Content="Вход" Grid.Column="3" HorizontalAlignment="Left" Margin="10,94,0,0" Grid.Row="1" VerticalAlignment="Top" Width="325" Height="37"/>
  27. <Button Content="Регистрация" HorizontalAlignment="Left" Margin="10,136,0,0" Grid.Row="1" VerticalAlignment="Top" Width="325" Height="37" Grid.Column="3" Click="Button_Click_1"/>
  28. <PasswordBox Grid.Column="3" HorizontalAlignment="Left" Margin="56,66,0,0" Grid.Row="1" VerticalAlignment="Top"/>
  29. <PasswordBox x:Name="PasswordBox" Grid.Column="3" HorizontalAlignment="Left" Margin="0,47,0,0" Grid.Row="1" VerticalAlignment="Top" Width="345" Height="42"/>
  30. </Grid>
  31. </Page>