markus / MARKUSStart / Markus / MainWindow.xaml @ 8e6884a5
이력 | 보기 | 이력해설 | 다운로드 (2.88 KB)
1 |
<Window x:Class="Markus.MainWindow" |
---|---|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
4 |
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
5 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
6 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
7 |
xmlns:local="clr-namespace:Markus" |
8 |
mc:Ignorable="d" |
9 |
Title="MainWindow" Height="450" Width="800"> |
10 |
<Grid x:Name="LayoutRoot" Width="350" Margin="221,0,221,2"> |
11 |
<Grid.RowDefinitions>
|
12 |
<RowDefinition Height="10"/> |
13 |
<RowDefinition Height="22"/> |
14 |
<RowDefinition Height="10"/> |
15 |
<RowDefinition Height="22"/> |
16 |
<RowDefinition Height="10"/> |
17 |
<RowDefinition Height="22"/> |
18 |
<RowDefinition Height="10"/> |
19 |
<RowDefinition Height="22"/> |
20 |
<RowDefinition Height="10"/> |
21 |
<RowDefinition Height="22"/> |
22 |
<RowDefinition Height="10"/> |
23 |
<RowDefinition Height="22"/> |
24 |
<RowDefinition Height="10"/> |
25 |
<RowDefinition Height="22"/> |
26 |
<RowDefinition Height="10"/> |
27 |
<RowDefinition Height="22"/> |
28 |
<RowDefinition Height="10"/> |
29 |
<RowDefinition Height="22"/> |
30 |
<RowDefinition Height="10"/> |
31 |
<RowDefinition Height="22"/> |
32 |
<RowDefinition Height="10"/> |
33 |
</Grid.RowDefinitions>
|
34 |
<Grid.ColumnDefinitions>
|
35 |
<ColumnDefinition Width="10"/> |
36 |
<ColumnDefinition Width="auto"/> |
37 |
<ColumnDefinition Width="10"/> |
38 |
<ColumnDefinition Width="*"/> |
39 |
<ColumnDefinition Width="10"/> |
40 |
</Grid.ColumnDefinitions>
|
41 |
<TextBlock Text="DocumentItemID:" Grid.Row="1" Grid.Column="1"/> |
42 |
<TextBox Grid.Row="1" Grid.Column="3" Name="DocumentItemID"/> |
43 |
|
44 |
<TextBlock Text="ProjectNO:" Grid.Row="3" Grid.Column="1"/> |
45 |
<TextBox Grid.Row="3" Grid.Column="3" Name="ProjectNO"/> |
46 |
<TextBlock Text="UserID:" Grid.Row="5" Grid.Column="1"/> |
47 |
<TextBox Grid.Row="5" Grid.Column="3" Name="UserID"/> |
48 |
|
49 |
|
50 |
<TextBlock Text="CreateFinal:" Grid.Row="7" Grid.Column="1"/> |
51 |
<CheckBox Grid.Row="7" Grid.Column="3" Name="CreateFinal"/> |
52 |
<TextBlock Text="NewComment:" Grid.Row="9" Grid.Column="1"/> |
53 |
<CheckBox Grid.Row="9" Grid.Column="3" Name="NewComment"/> |
54 |
<TextBlock Text="Partner:" Grid.Row="11" Grid.Column="1"/> |
55 |
<CheckBox Grid.Row="11" Grid.Column="3" Name="Partner" /> |
56 |
|
57 |
<TextBlock Text="URL:" Grid.Row="13" Grid.Column="1"/> |
58 |
<TextBox x:Name="URL" Grid.Row="13" Grid.Column="3" Grid.RowSpan="4"/> |
59 |
<Button Content="Open" Margin="5" Width="50" Height="20" Grid.Row="19" Grid.ColumnSpan="2" Grid.Column="3" HorizontalAlignment="Right" Grid.RowSpan="2" Click="Button_Click" /> |
60 |
</Grid>
|
61 |
</Window>
|