RegWind.xaml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <Window x:Class="WindowedMyApp.RegWind"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:WindowedMyApp"
  7. mc:Ignorable="d"
  8. Title="MainWindow" MinHeight="500" MinWidth="800" WindowStartupLocation="CenterScreen" ResizeMode="CanResize">
  9. <Grid>
  10. <Grid>
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="100"/>
  13. <RowDefinition Height="250"/>
  14. <RowDefinition Height="100"/>
  15. </Grid.RowDefinitions>
  16. <TextBlock Text="Регистрация" FontSize="24" Grid.Row="0" HorizontalAlignment="Center" VerticalAlignment="Center"/>
  17. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="1">
  18. <TextBlock FontSize="24">Логин (Имя)</TextBlock>
  19. <TextBox x:Name="nameText" Width="250" Height="35" HorizontalAlignment="Left" VerticalContentAlignment="Center" FontSize="16"/>
  20. <TextBlock FontSize="24">Отчество</TextBlock>
  21. <TextBox x:Name="PatronymText" Width="250" Height="35" HorizontalAlignment="Left" VerticalContentAlignment="Center" FontSize="16"/>
  22. <TextBlock FontSize="24">Пароль (Фамилия)</TextBlock>
  23. <PasswordBox x:Name="surnameText" Width="250" Height="35" HorizontalAlignment="Left" VerticalContentAlignment="Center" FontSize="16"/>
  24. <TextBlock Margin="0 20 0 0" HorizontalAlignment="Center">
  25. <Run Text="У вас уже есть аккаунт? "/>
  26. <Hyperlink Click="toLoginButton_Click">
  27. <TextBlock TextDecorations="Underline">Войти</TextBlock>
  28. </Hyperlink>
  29. </TextBlock>
  30. </StackPanel>
  31. <StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Center">
  32. <Button Content="Зарегистрироваться" FontSize="24" Width="250" Height="35" Click="Button_Click"/>
  33. </StackPanel>
  34. </Grid>
  35. </Grid>
  36. </Window>