markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / DataBaseViewInfo.xaml @ 8c7d1ea1
이력 | 보기 | 이력해설 | 다운로드 (3.46 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:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
6 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
7 |
xmlns:local="clr-namespace:Markus.Service.StationController.Views" |
8 |
mc:Ignorable="d" Background="White" |
9 |
d:DesignHeight="450" d:DesignWidth="800"> |
10 |
<Grid Width="Auto" |
11 |
HorizontalAlignment="Stretch" Margin="10"> |
12 |
<Grid.Resources>
|
13 |
<Style TargetType="DataGridCell"> |
14 |
<Setter Property="Margin" Value="10"/> |
15 |
</Style>
|
16 |
<Style TargetType="TextBlock"> |
17 |
<Setter Property="FontWeight" Value="Bold"/> |
18 |
<Setter Property="Margin" Value="5"/> |
19 |
<Setter Property="HorizontalAlignment" Value="Left"/> |
20 |
<Setter Property="VerticalAlignment" Value="Center"/> |
21 |
</Style>
|
22 |
</Grid.Resources>
|
23 |
<Grid.RowDefinitions>
|
24 |
<RowDefinition Height="AUTO" /> |
25 |
<RowDefinition Height="AUTO" /> |
26 |
<RowDefinition Height="AUTO" /> |
27 |
<RowDefinition Height="AUTO" /> |
28 |
<RowDefinition Height="AUTO" /> |
29 |
</Grid.RowDefinitions>
|
30 |
<Grid.ColumnDefinitions>
|
31 |
<ColumnDefinition Width="Auto" /> |
32 |
<ColumnDefinition Width="Auto" /> |
33 |
<ColumnDefinition Width="Auto"/> |
34 |
<ColumnDefinition Width="100" /> |
35 |
</Grid.ColumnDefinitions>
|
36 |
<TextBlock Text="GROUP_NO: " |
37 |
Grid.Row="0" |
38 |
Grid.Column="0"/> |
39 |
<TextBox Text="{Binding GroupNo}" |
40 |
Grid.Row="0" BorderThickness="0" IsReadOnly="True" |
41 |
Grid.Column="1" /> |
42 |
<TextBlock Text="ProcessorAffinity: " |
43 |
Grid.Row="0" |
44 |
Grid.Column="2" Margin="10"/> |
45 |
<TextBox Text="{Binding ProcessorAffinity}" |
46 |
Grid.Row="0" BorderThickness="0" IsReadOnly="True" |
47 |
Grid.Column="3" /> |
48 |
<TextBlock Text="DOCUMENT_NO: " |
49 |
Grid.Row="1" |
50 |
Grid.Column="0" /> |
51 |
<TextBox Text="{Binding DocumnetNo}" |
52 |
Grid.Row="1" BorderThickness="0" IsReadOnly="True" |
53 |
Grid.Column="1" /> |
54 |
<TextBlock Text="ReConverter: " |
55 |
Grid.Row="1" Margin="10" |
56 |
Grid.Column="2"/> |
57 |
<TextBox Text="{Binding ReConverter}" |
58 |
Grid.Row="1" BorderThickness="0" IsReadOnly="True" |
59 |
Grid.Column="3"/> |
60 |
<TextBlock Text="DOCUMENT_NAME: " |
61 |
Grid.Row="2" |
62 |
Grid.Column="0" /> |
63 |
<TextBox Text="{Binding DocumnetName}" |
64 |
Grid.Row="2" BorderThickness="0" IsReadOnly="True" |
65 |
Grid.Column="1"/> |
66 |
<TextBlock Text="Service ID: " |
67 |
Grid.Row="2" Margin="10" |
68 |
Grid.Column="2"/> |
69 |
<TextBox Text="{Binding ServiceID}" |
70 |
Grid.Row="2" BorderThickness="0" IsReadOnly="True" |
71 |
Grid.Column="3" Width="489"/> |
72 |
<TextBlock Text="REVISION: " |
73 |
Grid.Row="3" |
74 |
Grid.Column="0"/> |
75 |
<TextBox Text="{Binding Revision}" |
76 |
Grid.Row="3" BorderThickness="0" IsReadOnly="True" |
77 |
Grid.Column="1"/> |
78 |
<TextBlock Text="Exception: " |
79 |
Grid.Row="4" |
80 |
Grid.Column="0"/> |
81 |
<TextBox Text="{Binding Exception}" |
82 |
Grid.Row="4" BorderThickness="0" AcceptsReturn="True" IsReadOnly="True" |
83 |
Grid.Column="1" Grid.ColumnSpan="3" Margin="0,0,10,0"/> |
84 |
</Grid>
|
85 |
</UserControl>
|