Registration.xaml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <Page x:Class="SneakersSkakunov.Registration"
  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:SneakersSkakunov"
  7. mc:Ignorable="d"
  8. d:DesignHeight="720" d:DesignWidth="1080"
  9. Title="Registration">
  10. <Grid Background="#f5f5f5">
  11. <StackPanel HorizontalAlignment="Left" VerticalAlignment="Center" >
  12. <Rectangle Fill=" #dbdbdb" RadiusX="15" RadiusY="15" Margin="100" Height="516" Width="650" />
  13. </StackPanel>
  14. <StackPanel Orientation="Vertical" HorizontalAlignment="Left" Margin=" 150" VerticalAlignment="Center">
  15. <TextBlock HorizontalAlignment="Center" FontWeight="DemiBold" Margin="0,0,0,0" FontSize="40">Регистрация</TextBlock>
  16. </StackPanel>
  17. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,0,240,0">
  18. <Rectangle Height="420" Width="2" Stroke="#292929"/>
  19. </StackPanel>
  20. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Margin="30,0,0,0">
  21. <TextBlock Margin="10,10,0,0" Foreground="#292929" >Фамилия</TextBlock>
  22. <TextBox BorderThickness="2" Height="25" BorderBrush="#292929" x:Name="Surname" Background="#f5f5f5" ></TextBox>
  23. <TextBlock Margin="10,10,0,0" Foreground="#292929" >Имя</TextBlock>
  24. <TextBox BorderThickness="2" Height="25" BorderBrush="#292929" x:Name="Name" Background="#f5f5f5" ></TextBox>
  25. <TextBlock Margin="10,10,0,0" Foreground="#292929" >Отчество</TextBlock>
  26. <TextBox BorderThickness="2" Height="25" BorderBrush="#292929" x:Name="Patronymic" Background="#f5f5f5" ></TextBox>
  27. <TextBlock Margin="10,10,0,0" Foreground="#292929" >Логин</TextBlock>
  28. <TextBox BorderThickness="2" Height="25" BorderBrush="#292929" x:Name="Login" Background="#f5f5f5" ></TextBox>
  29. <TextBlock Margin="10,10,0,0" Foreground="#292929" >Пароль</TextBlock>
  30. <PasswordBox BorderThickness="2" Height="25" BorderBrush="#292929" Margin="0, 0, 0, 0" x:Name="Pass" Background="#f5f5f5" />
  31. <TextBlock Margin="10,10,0,0" Foreground="#292929" >Дата</TextBlock>
  32. <DatePicker Name="BirthDate" Background="#0000" Foreground="#4f4f4f" BorderBrush="#0000"></DatePicker>
  33. <TextBlock Margin="10,10,0,0" Foreground="#292929" >Пол</TextBlock>
  34. <StackPanel Orientation="Horizontal" Margin="0,5,0,0">
  35. <RadioButton Name="Male" Foreground="#292929" GroupName="id_gender" Margin="10,0,10,0">М</RadioButton>
  36. <RadioButton Name="Female" Foreground="#292929" GroupName="id_gender">Ж</RadioButton>
  37. </StackPanel>
  38. <Border BorderThickness="2" CornerRadius="4" BorderBrush="#292929" Background="#f5f5f5" Height="28" Width="200" Margin="0,20,0,0" >
  39. <Button Name="Reg" Click="Reg_Click" Background="#0000" BorderBrush="#0000" Content="Зарегестрироваться" FontWeight="Bold" FontSize="14"></Button>
  40. </Border>
  41. <Button Click="GoAuth_Click" Background="#0000" BorderBrush="#0000" FontSize="13" Margin="0,5,0,0">
  42. <TextBlock Foreground="#757575">Авторизоваться</TextBlock>
  43. </Button>
  44. </StackPanel>
  45. </Grid>
  46. </Page>