12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <Page x:Class="SSS.Page3"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:SSS"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="Page3">
- <Grid Background="#F5F5F5">
- <StackPanel Margin="0,100,0,0">
- </StackPanel>
- <StackPanel VerticalAlignment="Center" Margin="480,0,0,200" Width="300">
- <TextBlock Foreground="#4f4f4f" x:Name="Srname" Height="25"/>
- <TextBlock Text="Фамилия "/>
- <TextBlock Foreground="#4f4f4f" x:Name="Fam"/>
- <TextBlock Text="Имя " Margin="0,5,0,0"/>
- <TextBlock Foreground="#4f4f4f" x:Name="Nam"/>
- <TextBlock Text="Отчество " Margin="0,5,0,0"/>
- <TextBlock Foreground="#4f4f4f" x:Name="Patr"/>
- <TextBlock Text="Пол" Margin="0,5,0,0"/>
- <TextBlock Foreground="#4f4f4f" x:Name="Gen"/>
- <TextBlock Text="Дата рождения" Margin="0,5,0,0"/>
- <DatePicker x:Name="DateBirth" Background="#0000" Foreground="Black" BorderBrush="#0000"/>
- <TextBlock Text="Логин" Margin="0,5,0,0"/>
- <TextBlock x:Name="Log" Background="#0000" Foreground="Black"/>
- <TextBlock Text="Пароль" Margin="0,5,0,0"/>
- <TextBlock x:Name="Pass" Background="#0000" Foreground="Black"/>
- </StackPanel>
- <StackPanel Margin="0,270,0,0">
- <Border BorderThickness="2" CornerRadius="7" Background="White" Height="30" Margin="10,5,0,0">
- <Button Background="#0000" BorderBrush="#0000" Foreground="Black" FontSize="14" Click="RedUserInfo">Изменить личные данные</Button>
- </Border>
- <Border BorderThickness="2" CornerRadius="7" Background="White" Height="30" Margin="10,5,0,0">
- <Button Background="#0000" BorderBrush="#0000" Foreground="Black" FontSize="14" Click="RedAuthInfo">Изменить аутентификационные данные</Button>
- </Border>
- <Border BorderThickness="2" CornerRadius="7" Background="White" Height="30" Margin="10,5,0,0">
- <Button Background="#0000" BorderBrush="#0000" Foreground="Black" FontSize="14" Click="UploadPhoto">Изменить фотографию на новую</Button>
- </Border>
- <Border BorderThickness="2" CornerRadius="7" Background="White" Height="30" Margin="10,5,0,0">
- <Button Background="#0000" BorderBrush="#0000" Foreground="Black" FontSize="14" Click="UploadPhotos">Добавить еще фото</Button>
- </Border>
- <Border BorderThickness="2" CornerRadius="7" Background="White" Height="30" Margin="10,5,0,0">
- <Button Background="#0000" BorderBrush="#0000" Foreground="Black" FontSize="14" Click="SelectPh">Изменить фотографию на старую</Button>
- </Border>
- </StackPanel>
- </Grid>
- </Page>
|