123456789101112131415161718192021222324252627282930313233343536 |
- <Page x:Class="BuzuevaDemo.Pages.CreateData"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:BuzuevaDemo.Pages"
- mc:Ignorable="d"
- Title="CreateZapis" Height="450" Width="245">
- <Grid>
- <StackPanel Orientation="Vertical" HorizontalAlignment="Stretch" VerticalAlignment="Center" Margin="10">
- <GroupBox Header="Наименование">
- <TextBox/>
- </GroupBox>
- <GroupBox Header="Тип агента">
- <ComboBox/>
- </GroupBox>
- <GroupBox Header="Приоритет">
- <TextBox/>
- </GroupBox>
- <GroupBox Header="Адрес">
- <TextBox/>
- </GroupBox>
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" >
- <GroupBox Header="ИНН" >
- <TextBox Width="80"/>
- </GroupBox>
- <GroupBox Header="КПП">
- <TextBox Width="80"/>
- </GroupBox>
- </StackPanel>
- <Image Width="100" Height="100"/>
- <Button Content="Создать"/>
- </StackPanel>
- </Grid>
- </Page>
|