Izmen.xaml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Window x:Class="SSS.Izmen"
  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="Izmen">
  10. <Grid Background="Lavender">
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="*"></RowDefinition>
  13. <RowDefinition Height="35"></RowDefinition>
  14. </Grid.RowDefinitions>
  15. <StackPanel VerticalAlignment="Center" Width="300" Grid.Row="0">
  16. <TextBlock Text="Фамилия" Margin="0,5,0,0"></TextBlock>
  17. <TextBox Background="#0000" Foreground="Black" Name="Srname"></TextBox>
  18. <TextBlock Text="Имя" Margin="0,10,0,0"></TextBlock>
  19. <TextBox Background="#0000" Foreground="Black" Name="Nam"></TextBox>
  20. <TextBlock Text="Отчество" Margin="0,10,0,0"></TextBlock>
  21. <TextBox Background="#0000" Foreground="Black" Name="Patr"></TextBox>
  22. <TextBlock Text="День рождения" Margin="0,10,0,0"></TextBlock>
  23. <DatePicker Name="DateBirth" Background="#0000" Foreground="Black" ></DatePicker>
  24. <Border BorderThickness="2" CornerRadius="7" BorderBrush="#bababa" Background="White" Height="30" Margin="0,5,0,0">
  25. <Button Foreground="Black" FontSize="14" Click="Edit">Изменить</Button>
  26. </Border>
  27. </StackPanel>
  28. <StackPanel Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="3,0,0,0">
  29. <Border BorderThickness="2" CornerRadius="7" BorderBrush="#bababa" Background="White" Width="100" Height="30">
  30. <Button Foreground="Black" Content="Назад" FontSize="16" Click="Back"></Button>
  31. </Border>
  32. </StackPanel>
  33. </Grid>
  34. </Window>