1 |
84190963
|
taeseongkim
|
<telerik:RadWindow x:Class="KCOM.Views.AddRequirement"
|
2 |
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
3 |
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
4 |
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
5 |
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
6 |
|
|
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
|
7 |
|
|
xmlns:local="clr-namespace:KCOM.Views" Header="" HideMaximizeButton="True" HideMinimizeButton="True"
|
8 |
|
|
mc:Ignorable="d" CanClose="False" CanMove="False" Width="600" Height="165">
|
9 |
|
|
<Grid Background="#FFF1F1F1">
|
10 |
|
|
<Grid.RowDefinitions>
|
11 |
|
|
<RowDefinition Height="Auto"/>
|
12 |
|
|
<RowDefinition Height="Auto"/>
|
13 |
|
|
<RowDefinition Height="Auto"/>
|
14 |
|
|
</Grid.RowDefinitions>
|
15 |
|
|
<Border Margin="5">
|
16 |
|
|
<StackPanel Orientation="Vertical" Margin="5">
|
17 |
|
|
<TextBlock Text="코멘트 입력 : " FontWeight="Bold" FontFamily="Arial"/>
|
18 |
|
|
<TextBox Margin="0,8" x:Name="txtComment" IsTabStop="True" TabIndex="0" Focusable="True" Text=""/>
|
19 |
|
|
<StackPanel Orientation="Horizontal" Margin="0,10,0,0">
|
20 |
|
|
<TextBlock Text="정합성 여부 : " FontWeight="Bold" FontFamily="Arial"/>
|
21 |
|
|
<CheckBox x:Name="chkCondition" IsChecked="True"/>
|
22 |
|
|
</StackPanel>
|
23 |
|
|
</StackPanel>
|
24 |
|
|
</Border>
|
25 |
|
|
<Grid Grid.Row="2" HorizontalAlignment="Center" Margin="10">
|
26 |
|
|
<Grid.ColumnDefinitions>
|
27 |
|
|
<ColumnDefinition Width="Auto"/>
|
28 |
|
|
<ColumnDefinition Width="20"/>
|
29 |
|
|
<ColumnDefinition Width="Auto"/>
|
30 |
|
|
</Grid.ColumnDefinitions>
|
31 |
|
|
<telerik:RadButton Content="확인" FontSize="12" Height="24" Width="80" Click="Ok_click"/>
|
32 |
|
|
<telerik:RadButton Content="취소" Grid.Column="2" FontSize="12" Height="24" Width="80" Click="Cancel_click"/>
|
33 |
|
|
</Grid>
|
34 |
|
|
</Grid>
|
35 |
|
|
</telerik:RadWindow> |