Page3.xaml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <Page x:Class="SSS.Page3"
  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:SSS"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Page3">
  10. <Grid Background="#F5F5F5">
  11. <StackPanel Margin="0,100,0,0">
  12. </StackPanel>
  13. <StackPanel VerticalAlignment="Center" Margin="480,0,0,200" Width="300">
  14. <TextBlock Foreground="#4f4f4f" x:Name="Srname" Height="25"/>
  15. <TextBlock Text="Фамилия "/>
  16. <TextBlock Foreground="#4f4f4f" x:Name="Fam"/>
  17. <TextBlock Text="Имя " Margin="0,5,0,0"/>
  18. <TextBlock Foreground="#4f4f4f" x:Name="Nam"/>
  19. <TextBlock Text="Отчество " Margin="0,5,0,0"/>
  20. <TextBlock Foreground="#4f4f4f" x:Name="Patr"/>
  21. <TextBlock Text="Пол" Margin="0,5,0,0"/>
  22. <TextBlock Foreground="#4f4f4f" x:Name="Gen"/>
  23. <TextBlock Text="Дата рождения" Margin="0,5,0,0"/>
  24. <DatePicker x:Name="DateBirth" Background="#0000" Foreground="Black" BorderBrush="#0000"/>
  25. <TextBlock Text="Логин" Margin="0,5,0,0"/>
  26. <TextBlock x:Name="Log" Background="#0000" Foreground="Black"/>
  27. <TextBlock Text="Пароль" Margin="0,5,0,0"/>
  28. <TextBlock x:Name="Pass" Background="#0000" Foreground="Black"/>
  29. </StackPanel>
  30. <StackPanel Margin="0,270,0,0">
  31. <Border BorderThickness="2" CornerRadius="7" Background="White" Height="30" Margin="10,5,0,0">
  32. <Button Background="#0000" BorderBrush="#0000" Foreground="Black" FontSize="14" Click="RedUserInfo">Изменить личные данные</Button>
  33. </Border>
  34. <Border BorderThickness="2" CornerRadius="7" Background="White" Height="30" Margin="10,5,0,0">
  35. <Button Background="#0000" BorderBrush="#0000" Foreground="Black" FontSize="14" Click="RedAuthInfo">Изменить аутентификационные данные</Button>
  36. </Border>
  37. <Border BorderThickness="2" CornerRadius="7" Background="White" Height="30" Margin="10,5,0,0">
  38. <Button Background="#0000" BorderBrush="#0000" Foreground="Black" FontSize="14" Click="UploadPhoto">Изменить фотографию на новую</Button>
  39. </Border>
  40. <Border BorderThickness="2" CornerRadius="7" Background="White" Height="30" Margin="10,5,0,0">
  41. <Button Background="#0000" BorderBrush="#0000" Foreground="Black" FontSize="14" Click="UploadPhotos">Добавить еще фото</Button>
  42. </Border>
  43. <Border BorderThickness="2" CornerRadius="7" Background="White" Height="30" Margin="10,5,0,0">
  44. <Button Background="#0000" BorderBrush="#0000" Foreground="Black" FontSize="14" Click="SelectPh">Изменить фотографию на старую</Button>
  45. </Border>
  46. </StackPanel>
  47. </Grid>
  48. </Page>