RegistrationPage.xaml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <Page x:Class="HelpHelf.Pages.RegistrationPage"
  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:HelpHelf.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="RegistrationPage">
  10. <Grid>
  11. <StackPanel VerticalAlignment="Center">
  12. <TextBlock FontFamily="Calibri"
  13. Foreground="#0B61A4" FontWeight="Bold" FontSize="35"
  14. HorizontalAlignment="Center" Text="Регистрация"/>
  15. <GroupBox Margin="0,10,0,0" FontFamily="Calibri"
  16. FontSize="20" Width="300" BorderBrush="#0B61A4"
  17. BorderThickness="3" Header="Фамилия">
  18. <TextBox Padding="2" Margin="5"
  19. Name="tbSurname"/>
  20. </GroupBox>
  21. <GroupBox Margin="0,10,0,0" FontFamily="Calibri"
  22. FontSize="20" Width="300" BorderBrush="#0B61A4"
  23. BorderThickness="3" Header="Имя">
  24. <TextBox Padding="2" Margin="5"
  25. Name="tbName"/>
  26. </GroupBox>
  27. <GroupBox Margin="0,10,0,0" FontFamily="Calibri"
  28. FontSize="20" Width="300" BorderBrush="#0B61A4"
  29. BorderThickness="3" Header="Логин">
  30. <TextBox Padding="2" Margin="5"
  31. Name="tbLogin"/>
  32. </GroupBox>
  33. <GroupBox Margin="0,10,0,0" FontFamily="Calibri"
  34. FontSize="20" Width="300" BorderBrush="#0B61A4"
  35. BorderThickness="3" Header="Пароль">
  36. <PasswordBox Padding="2" Margin="5"
  37. PasswordChar="*" Name="pswPassword"/>
  38. </GroupBox>
  39. <Button Click="btnReg_Click" Background="White" Padding="5"
  40. BorderBrush="#0B61A4" BorderThickness="3"
  41. FontFamily="Calibri" FontSize="20" Margin="0,30,0,0"
  42. Name="btnReg" Width="220" Content="Зарегистрироваться" Cursor="Hand"/>
  43. <Button Click="btnAuto_Click" Background="White" Padding="5"
  44. BorderBrush="#0B61A4" BorderThickness="3"
  45. FontFamily="Calibri" FontSize="20" Margin="0,20,0,0"
  46. Name="btnAuto" Width="160" Content="Авторизация" Cursor="Hand"/>
  47. </StackPanel>
  48. </Grid>
  49. </Page>