1234567891011121314151617181920212223242526272829303132 |
- <Window x:Class="SneakersSkakunov.Redact"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:SneakersSkakunov"
- mc:Ignorable="d"
- Title="Redact" Height="450" Width="800">
- <Grid Background="#f5f5f5">
- <StackPanel Width="250" VerticalAlignment="Center">
- <TextBlock Margin="10,10,0,0" Foreground="#292929" >Фамилия</TextBlock>
- <TextBox BorderThickness="2" Height="25" BorderBrush="#292929" Background="#f5f5f5" Name="fam"></TextBox>
- <TextBlock Margin="10,10,0,0" Foreground="#292929" >Имя</TextBlock>
- <TextBox BorderThickness="2" Height="25" BorderBrush="#292929" Background="#f5f5f5" Name="imya"></TextBox>
- <TextBlock Margin="10,10,0,0" Foreground="#292929" >Отчество</TextBlock>
- <TextBox BorderThickness="2" Height="25" BorderBrush="#292929" Background="#f5f5f5" Name="otch"></TextBox>
- <TextBlock Margin="10,10,0,0" Foreground="#292929" >Дата рождения</TextBlock>
- <DatePicker Name="BirthDate" Background="#0000" BorderBrush="#292929"></DatePicker>
- <Border BorderThickness="2" CornerRadius="5" BorderBrush="#292929" Background="White" Height="30" Margin="0,15,0,0">
- <Button Background="#0000" BorderBrush="#0000" Foreground="#292929" FontSize="14" Click="Edit">Изменить личные данные</Button>
- </Border>
- <Border BorderThickness="2" CornerRadius="5" BorderBrush="#292929" Background="White" Width="250" Height="30" Margin="0,5,0,0">
- <Button Background="#0000" BorderBrush="#0000" Foreground="#292929" Click="Back">Вернуться</Button>
- </Border>
- </StackPanel>
- </Grid>
- </Window>
|