AddAndRedactAgent.xaml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <Window x:Class="WhiteList.AddAndRedactAgent"
  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:WhiteList"
  7. mc:Ignorable="d"
  8. Title="Приятный шелест" Icon="Images/Приятный шелест.png" MinWidth="800" MinHeight="700" Height="700" Width="800">
  9. <Grid>
  10. <StackPanel Orientation="Vertical">
  11. <StackPanel Orientation="Horizontal">
  12. <TextBlock>Название*</TextBlock>
  13. <TextBox Name="TextBoxTitle"/>
  14. <ComboBox Name="ComboBoxType"/>
  15. </StackPanel>
  16. <StackPanel Orientation="Horizontal">
  17. <TextBlock>Приоритет*</TextBlock>
  18. <TextBox Name="TextBoxPriority" Width="70"/>
  19. <TextBlock>Адрес</TextBlock>
  20. <TextBox Name="TextBoxAdres" Width="450"/>
  21. </StackPanel>
  22. <StackPanel Orientation="Horizontal">
  23. <TextBlock>ИНН*</TextBlock>
  24. <TextBox Name="TextBoxINN" Width="120"/>
  25. <TextBlock>КПП</TextBlock>
  26. <TextBox Name="TextBoxKPP" Width="120"/>
  27. <TextBlock>Имя директора</TextBlock>
  28. <TextBox Name="TextBoxNameDirector" Width="250"/>
  29. </StackPanel>
  30. <StackPanel Orientation="Horizontal">
  31. <TextBlock>Телефон*</TextBlock>
  32. <TextBox Name="TextBoxPhone" Width="200"/>
  33. <TextBlock>Почта</TextBlock>
  34. <TextBox Name="TextBoxEmail" Width="200"/>
  35. </StackPanel>
  36. <Button Click="Save_Click">
  37. <TextBlock>Сохранить</TextBlock>
  38. </Button>
  39. </StackPanel>
  40. </Grid>
  41. </Window>