|
@@ -0,0 +1,41 @@
|
|
|
+<Window x:Class="WhiteList.AddAndRedactAgent"
|
|
|
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
+ xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
+ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
+ xmlns:local="clr-namespace:WhiteList"
|
|
|
+ mc:Ignorable="d"
|
|
|
+ Title="Приятный шелест" Icon="Images/Приятный шелест.png" MinWidth="800" MinHeight="700" Height="700" Width="800">
|
|
|
+ <Grid>
|
|
|
+ <StackPanel Orientation="Vertical">
|
|
|
+ <StackPanel Orientation="Horizontal">
|
|
|
+ <TextBlock>Название*</TextBlock>
|
|
|
+ <TextBox Name="TextBoxTitle"/>
|
|
|
+ <ComboBox Name="ComboBoxType"/>
|
|
|
+ </StackPanel>
|
|
|
+ <StackPanel Orientation="Horizontal">
|
|
|
+ <TextBlock>Приоритет*</TextBlock>
|
|
|
+ <TextBox Name="TextBoxPriority" Width="70"/>
|
|
|
+ <TextBlock>Адрес</TextBlock>
|
|
|
+ <TextBox Name="TextBoxAdres" Width="450"/>
|
|
|
+ </StackPanel>
|
|
|
+ <StackPanel Orientation="Horizontal">
|
|
|
+ <TextBlock>ИНН*</TextBlock>
|
|
|
+ <TextBox Name="TextBoxINN" Width="120"/>
|
|
|
+ <TextBlock>КПП</TextBlock>
|
|
|
+ <TextBox Name="TextBoxKPP" Width="120"/>
|
|
|
+ <TextBlock>Имя директора</TextBlock>
|
|
|
+ <TextBox Name="TextBoxNameDirector" Width="250"/>
|
|
|
+ </StackPanel>
|
|
|
+ <StackPanel Orientation="Horizontal">
|
|
|
+ <TextBlock>Телефон*</TextBlock>
|
|
|
+ <TextBox Name="TextBoxPhone" Width="200"/>
|
|
|
+ <TextBlock>Почта</TextBlock>
|
|
|
+ <TextBox Name="TextBoxEmail" Width="200"/>
|
|
|
+ </StackPanel>
|
|
|
+ <Button Click="Save_Click">
|
|
|
+ <TextBlock>Сохранить</TextBlock>
|
|
|
+ </Button>
|
|
|
+ </StackPanel>
|
|
|
+ </Grid>
|
|
|
+</Window>
|