windCreateIssLRP.xaml 918 B

12345678910111213141516171819
  1. <Window x:Class="RedmineOracle.windCreateIssLRP"
  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:RedmineOracle"
  7. mc:Ignorable="d"
  8. Title="windCreateIssLRP" Height="400" Width="600"
  9. xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes">
  10. <Grid>
  11. <StackPanel>
  12. <TextBox Name="tbName"></TextBox>
  13. <ComboBox Name="cbResponds"></ComboBox>
  14. <TextBox Name="tbFullInf"></TextBox>
  15. <TextBox Name="tbIdLRP"></TextBox>
  16. <Button Name="btnCreate" Content="Создать" Click="btnCreate_Click"></Button>
  17. </StackPanel>
  18. </Grid>
  19. </Window>