MeRoom.axaml 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
  6. x:Class="Practikaoy.Views.MeRoom">
  7. <Grid>
  8. <TextBlock Foreground="#592321" FontSize="18" Margin="4" HorizontalAlignment="Center">Добро пожаловать в личный кабинет :)</TextBlock>
  9. <Border Background="#ffa69e" Height="395" Width="650" CornerRadius="15">
  10. <StackPanel Margin="16">
  11. <TextBlock Text="Фамилия" FontSize="18" Margin="-7 3 9 2" >
  12. </TextBlock>
  13. <TextBox Background="#fae1dd" Width="180" FontSize="15" CornerRadius="10" HorizontalAlignment="Left" BorderBrush="#ff686b" BorderThickness="2" Height="10" Margin="80 -30 9 6"/>
  14. <TextBlock Text="Имя" FontSize="18" Margin="-7 0 -2 -6" >
  15. </TextBlock>
  16. <TextBox Background="#fae1dd" Width="180" FontSize="15" CornerRadius="10" BorderBrush="#ff686b" BorderThickness="2" Height="10" Margin="-290 -20 9 6"/>
  17. <TextBlock Text="Отчество" FontSize="18" Margin="-7 0 -2 -6">
  18. </TextBlock>
  19. <TextBox Background="#fae1dd" Width="180" FontSize="15" CornerRadius="10" HorizontalAlignment="Right" BorderBrush="#ff686b" BorderThickness="2" Height="10" Margin="0 -20 355 7"/>
  20. <TextBlock Text="Логин" FontSize="18" Margin="370 -90 -2 -6">
  21. </TextBlock>
  22. <TextBox Background="#fae1dd" Width="180" FontSize="15" CornerRadius="10" HorizontalAlignment="Left" BorderBrush="#ff686b" BorderThickness="2" Height="10" Margin="429 -159 0 0"/>
  23. <CheckBox Margin="370 -60 -1 30" Content="Хотите изменить пароль? ;)"></CheckBox>
  24. <StackPanel Margin="2">
  25. <TextBox Background="#fae1dd" Watermark="Пароль" Width="180" FontSize="15" CornerRadius="10" HorizontalAlignment="Right" BorderBrush="#ff686b" BorderThickness="2" Height="10" Margin="2" />
  26. <TextBox Background="#fae1dd" Watermark="Повторите пароль" Width="180" FontSize="15" CornerRadius="10" HorizontalAlignment="Right" BorderBrush="#ff686b" BorderThickness="2" Height="10" />
  27. </StackPanel>
  28. <TextBlock Text="Пол" FontSize="18" Margin="-7 -70 -2 -6">
  29. </TextBlock>
  30. <ComboBox Background="#fae1dd" Width="180" FontSize="15" CornerRadius="10" HorizontalAlignment="Left" BorderBrush="#ff686b" BorderThickness="2" Height="10" Margin="35 -77 0 7"/>
  31. <TextBlock Text="Дата рождения" FontSize="18" Margin="-7 -40 -2 -6" >
  32. </TextBlock>
  33. <DatePicker Background="#fae1dd" Width="310" FontSize="15" CornerRadius="5" HorizontalAlignment="Left" BorderBrush="#ff686b" BorderThickness="2" Height="27" Margin="0 -10 0 7"/>
  34. <TextBlock Text="Стаж (в годах)" FontSize="18">
  35. </TextBlock>
  36. <TextBox Background="#fae1dd" Width="180" FontSize="15" CornerRadius="10" HorizontalAlignment="Left" BorderBrush="#ff686b" BorderThickness="2" Height="10"/>
  37. <TextBlock Text="Почта" FontSize="18">
  38. </TextBlock>
  39. <TextBox Background="#fae1dd" Width="180" FontSize="15" CornerRadius="10" HorizontalAlignment="Left" BorderBrush="#ff686b" BorderThickness="2" Height="10"/>
  40. <TextBlock Text="Телефон (если телефон отсутствует, то поле не заполняйте!!)" FontSize="18">
  41. </TextBlock>
  42. <TextBox Background="#fae1dd" Width="180" FontSize="15" CornerRadius="10" HorizontalAlignment="Left" BorderBrush="#ff686b" BorderThickness="2" Height="10"/>
  43. </StackPanel>
  44. </Border>
  45. </Grid>
  46. </UserControl>