ChangeData.xaml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Page x:Class="BuzuevaDemo.Pages.ChangeData"
  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:BuzuevaDemo.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="245"
  9. Title="ChangeData">
  10. <Grid>
  11. <StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center" Width="200">
  12. <GroupBox Header="Наименование">
  13. <TextBox/>
  14. </GroupBox>
  15. <GroupBox Header="Тип агента">
  16. <ComboBox/>
  17. </GroupBox>
  18. <GroupBox Header="Приоритет">
  19. <TextBox/>
  20. </GroupBox>
  21. <GroupBox Header="Адрес">
  22. <TextBox/>
  23. </GroupBox>
  24. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
  25. <GroupBox Header="ИНН">
  26. <TextBox Width="90"/>
  27. </GroupBox>
  28. <GroupBox Header="КПП">
  29. <TextBox Width="90"/>
  30. </GroupBox>
  31. </StackPanel>
  32. <Image Width="100" Height="100"/>
  33. <Button Content="Внести изменения"/>
  34. </StackPanel>
  35. </Grid>
  36. </Page>