WindowNameSurname.xaml 945 B

1234567891011121314151617181920
  1. <Window x:Class="CatProject.WindowNameSurname"
  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:CatProject"
  7. mc:Ignorable="d"
  8. Title="WindowNameSurname" Height="450" Width="800">
  9. <Grid>
  10. <StackPanel>
  11. <GroupBox Header="Изменить имя">
  12. <TextBox Name ="TBName"></TextBox>
  13. </GroupBox>
  14. <GroupBox Header="Изменить фамилию">
  15. <TextBox Name="TBSurname"></TextBox>
  16. </GroupBox>
  17. <Button HorizontalAlignment="Center" Click="Button_Click">Изменить личную информацию</Button>
  18. </StackPanel>
  19. </Grid>
  20. </Window>