Redact.xaml 2.0 KB

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