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