markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / DataBaseViewInfo.xaml @ 344ac7ed
이력 | 보기 | 이력해설 | 다운로드 (3.5 KB)
1 |
<UserControl x:Class="Markus.Service.StationController.Views.DataBaseViewInfo" |
---|---|
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:local="clr-namespace:Markus.Service.StationController.Views" |
7 |
mc:Ignorable="d" |
8 |
d:DesignHeight="450" d:DesignWidth="800"> |
9 |
<Grid Width="Auto" |
10 |
HorizontalAlignment="Stretch"> |
11 |
<Grid.Resources>
|
12 |
<Style TargetType="TextBox"> |
13 |
<Setter Property="Foreground" Value="Black"/> |
14 |
<Setter Property="Margin" Value="5,0,0,0"/> |
15 |
<Setter Property="IsReadOnly" Value="True"/> |
16 |
<Setter Property="HorizontalAlignment" Value="Left"/> |
17 |
<Setter Property="VerticalAlignment" Value="Center"/> |
18 |
</Style>
|
19 |
<Style TargetType="TextBlock"> |
20 |
<Setter Property="FontWeight" Value="Bold"/> |
21 |
<Setter Property="Margin" Value="5,0,0,0"/> |
22 |
<Setter Property="HorizontalAlignment" Value="Left"/> |
23 |
<Setter Property="VerticalAlignment" Value="Center"/> |
24 |
</Style>
|
25 |
</Grid.Resources>
|
26 |
<Grid.RowDefinitions>
|
27 |
<RowDefinition Height="20" /> |
28 |
<RowDefinition Height="20" /> |
29 |
<RowDefinition Height="20" /> |
30 |
<RowDefinition Height="20" /> |
31 |
<RowDefinition Height="20" /> |
32 |
<RowDefinition Height="20" /> |
33 |
</Grid.RowDefinitions>
|
34 |
<Grid.ColumnDefinitions>
|
35 |
<ColumnDefinition Width="Auto" /> |
36 |
<ColumnDefinition Width="Auto" /> |
37 |
<ColumnDefinition Width="150" /> |
38 |
<ColumnDefinition Width="10" /> |
39 |
<ColumnDefinition Width="Auto" /> |
40 |
<ColumnDefinition Width="*" /> |
41 |
</Grid.ColumnDefinitions>
|
42 |
<TextBlock Text="GROUP_NO: " |
43 |
Grid.Row="1" |
44 |
Grid.Column="1"/> |
45 |
<TextBox Text="{Binding GroupNo}" |
46 |
Grid.Row="1" |
47 |
Grid.Column="2" /> |
48 |
<TextBlock Text="ProcessorAffinity: " |
49 |
Grid.Row="2" |
50 |
Grid.Column="1" /> |
51 |
<TextBox Text="{Binding ProcessorAffinity}" |
52 |
Grid.Row="2" |
53 |
Grid.Column="2" /> |
54 |
<TextBlock Text="ReConverter: " |
55 |
Grid.Row="3" |
56 |
Grid.Column="1"/> |
57 |
<TextBox Text="{Binding ReConverter}" |
58 |
Grid.Row="3" |
59 |
Grid.Column="2"/> |
60 |
<TextBlock Text="REVISION: " |
61 |
Grid.Row="4" |
62 |
Grid.Column="1"/> |
63 |
<TextBox Text="{Binding Revision}" |
64 |
Grid.Row="4" |
65 |
Grid.Column="2"/> |
66 |
<Border Grid.Column="3" |
67 |
Grid.Row="0" |
68 |
Grid.RowSpan="6" |
69 |
Width="1" |
70 |
VerticalAlignment="Stretch" |
71 |
HorizontalAlignment="Left" |
72 |
Margin="0,10" /> |
73 |
<TextBlock Text="DOCUMENT_NO: " |
74 |
Grid.Row="1" |
75 |
Grid.Column="4" /> |
76 |
<TextBox Text="{Binding DocumnetNo}" |
77 |
Grid.Row="1" |
78 |
Grid.Column="5" /> |
79 |
<TextBlock Text="DOCUMENT_NAME: " |
80 |
Grid.Row="2" |
81 |
Grid.Column="4" /> |
82 |
<TextBox Text="{Binding DocumnetName}" |
83 |
Grid.Row="2" |
84 |
Grid.Column="5"/> |
85 |
<TextBlock Text="Exception: " |
86 |
Grid.Row="3" |
87 |
Grid.Column="4"/> |
88 |
<TextBox Text="{Binding Exception}" |
89 |
Grid.Row="3" |
90 |
Grid.Column="5" /> |
91 |
<TextBlock Text="Service ID: " |
92 |
Grid.Row="4" |
93 |
Grid.Column="4"/> |
94 |
<TextBox Text="{Binding ServiceID}" |
95 |
Grid.Row="4" |
96 |
Grid.Column="5" /> |
97 |
</Grid>
|
98 |
</UserControl>
|