CreateData.xaml 1.4 KB

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