개정판 b63dcfbb
markusEntities 추가
Change-Id: Iac863d0665e1d7e6ef8ceb0f709348cfb30966a2
ConvertService/ServiceBase/Markus.Service.StationController/Views/DataBaseViewInfo.xaml | ||
---|---|---|
1 | 1 |
<UserControl x:Class="Markus.Service.StationController.Views.DataBaseViewInfo" |
2 | 2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
3 | 3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
4 |
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
|
|
4 |
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
|
5 | 5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
6 | 6 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
7 | 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"> |
|
8 |
mc:Ignorable="d" Background="White" d:DesignHeight="450" d:DesignWidth="800"> |
|
9 |
<Grid HorizontalAlignment="Stretch" ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto" |
|
10 |
VerticalAlignment="Stretch"> |
|
12 | 11 |
<Grid.Resources> |
13 |
<Style TargetType="DataGridCell"> |
|
14 |
<Setter Property="Margin" Value="10"/> |
|
12 |
<Style x:Key="InfoStyle" TargetType="{x:Type TextBox}"> |
|
13 |
<Setter Property="Margin" Value="5,5,0,0"/> |
|
14 |
<Setter Property="VerticalAlignment" Value="Center"/> |
|
15 |
<Setter Property="Foreground" Value="Black"/> |
|
16 |
<Setter Property="Background" Value="Transparent"/> |
|
17 |
<Setter Property="BorderBrush" Value="Transparent"/> |
|
18 |
<Setter Property="BorderThickness" Value="0"/> |
|
19 |
<Setter Property="IsReadOnly" Value="true"/> |
|
20 |
<Setter Property="FocusVisualStyle" Value="{x:Null}"/> |
|
21 |
<Setter Property="ScrollViewer.PanningMode" Value="VerticalFirst"/> |
|
22 |
<Setter Property="Stylus.IsFlicksEnabled" Value="False"/> |
|
23 |
<Setter Property="Template"> |
|
24 |
<Setter.Value> |
|
25 |
<ControlTemplate TargetType="{x:Type TextBox}"> |
|
26 |
<Border x:Name="Bd" |
|
27 |
BorderThickness="{TemplateBinding BorderThickness}" |
|
28 |
SnapsToDevicePixels="true"> |
|
29 |
<ScrollViewer x:Name="PART_ContentHost" BorderThickness="{TemplateBinding BorderThickness}" |
|
30 |
SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/> |
|
31 |
</Border> |
|
32 |
</ControlTemplate> |
|
33 |
</Setter.Value> |
|
34 |
</Setter> |
|
15 | 35 |
</Style> |
36 |
<!--<Style TargetType="DataGridCell"> |
|
37 |
<Setter Property="Margin" Value="10"/> |
|
38 |
</Style>--> |
|
16 | 39 |
<Style TargetType="TextBlock"> |
17 | 40 |
<Setter Property="FontWeight" Value="Bold"/> |
18 |
<Setter Property="Margin" Value="5"/> |
|
41 |
<Setter Property="Margin" Value="5,5,0,0"/>
|
|
19 | 42 |
<Setter Property="HorizontalAlignment" Value="Left"/> |
20 | 43 |
<Setter Property="VerticalAlignment" Value="Center"/> |
21 | 44 |
</Style> |
... | ... | |
25 | 48 |
<RowDefinition Height="AUTO" /> |
26 | 49 |
<RowDefinition Height="AUTO" /> |
27 | 50 |
<RowDefinition Height="AUTO" /> |
28 |
<RowDefinition Height="AUTO" />
|
|
51 |
<RowDefinition Height="Auto" />
|
|
29 | 52 |
</Grid.RowDefinitions> |
30 | 53 |
<Grid.ColumnDefinitions> |
31 | 54 |
<ColumnDefinition Width="Auto" /> |
32 | 55 |
<ColumnDefinition Width="Auto" /> |
33 | 56 |
<ColumnDefinition Width="Auto"/> |
34 |
<ColumnDefinition Width="100" />
|
|
57 |
<ColumnDefinition Width="Auto" />
|
|
35 | 58 |
</Grid.ColumnDefinitions> |
36 | 59 |
<TextBlock Text="GROUP_NO: " |
37 | 60 |
Grid.Row="0" |
38 | 61 |
Grid.Column="0"/> |
39 |
<TextBox Text="{Binding GroupNo}" |
|
40 |
Grid.Row="0" BorderThickness="0" IsReadOnly="True"
|
|
41 |
Grid.Column="1" />
|
|
62 |
<TextBox Text="{Binding GroupNo}"
|
|
63 |
Grid.Row="0" Style="{StaticResource InfoStyle}"
|
|
64 |
Grid.Column="1"/> |
|
42 | 65 |
<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"
|
|
66 |
Grid.Row="0" Margin="10,0,0,0"
|
|
67 |
Grid.Column="2"/> |
|
68 |
<TextBox Text="{Binding ProcessorAffinity}" Margin="10,0,0,0"
|
|
69 |
Grid.Row="0" Style="{StaticResource InfoStyle}"
|
|
47 | 70 |
Grid.Column="3" /> |
48 | 71 |
<TextBlock Text="DOCUMENT_NO: " |
49 | 72 |
Grid.Row="1" |
50 | 73 |
Grid.Column="0" /> |
51 | 74 |
<TextBox Text="{Binding DocumnetNo}" |
52 |
Grid.Row="1" BorderThickness="0" IsReadOnly="True"
|
|
75 |
Grid.Row="1" Style="{StaticResource InfoStyle}"
|
|
53 | 76 |
Grid.Column="1" /> |
54 | 77 |
<TextBlock Text="ReConverter: " |
55 |
Grid.Row="1" Margin="10" |
|
78 |
Grid.Row="1" Margin="10,0,0,0"
|
|
56 | 79 |
Grid.Column="2"/> |
57 |
<TextBox Text="{Binding ReConverter}" |
|
58 |
Grid.Row="1" BorderThickness="0" IsReadOnly="True"
|
|
80 |
<TextBox Text="{Binding ReConverter}" Margin="10,0,0,0"
|
|
81 |
Grid.Row="1" Style="{StaticResource InfoStyle}"
|
|
59 | 82 |
Grid.Column="3"/> |
60 | 83 |
<TextBlock Text="DOCUMENT_NAME: " |
61 | 84 |
Grid.Row="2" |
62 | 85 |
Grid.Column="0" /> |
63 | 86 |
<TextBox Text="{Binding DocumnetName}" |
64 |
Grid.Row="2" BorderThickness="0" IsReadOnly="True"
|
|
87 |
Grid.Row="2" Style="{StaticResource InfoStyle}"
|
|
65 | 88 |
Grid.Column="1"/> |
66 | 89 |
<TextBlock Text="Service ID: " |
67 |
Grid.Row="2" Margin="10" |
|
90 |
Grid.Row="2" Margin="10,0,0,0"
|
|
68 | 91 |
Grid.Column="2"/> |
69 |
<TextBox Text="{Binding ServiceID}" HorizontalAlignment="Left" |
|
70 |
Grid.Row="2" BorderThickness="0" IsReadOnly="True"
|
|
92 |
<TextBox Text="{Binding ServiceID}" HorizontalAlignment="Left" Margin="10,0,0,0"
|
|
93 |
Grid.Row="2" Style="{StaticResource InfoStyle}"
|
|
71 | 94 |
Grid.Column="3" Width="489"/> |
72 | 95 |
<TextBlock Text="REVISION: " |
73 | 96 |
Grid.Row="3" |
74 | 97 |
Grid.Column="0"/> |
75 | 98 |
<TextBox Text="{Binding Revision}" |
76 |
Grid.Row="3" BorderThickness="0" IsReadOnly="True"
|
|
99 |
Grid.Row="3" Style="{StaticResource InfoStyle}"
|
|
77 | 100 |
Grid.Column="1"/> |
78 | 101 |
<TextBlock Text="Exception: " |
79 |
Grid.Row="4" |
|
102 |
Grid.Row="4" Margin="5,5,0,15"
|
|
80 | 103 |
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"/>
|
|
104 |
<TextBox Text="{Binding Exception}" TextWrapping="Wrap"
|
|
105 |
Grid.Row="4" Style="{StaticResource InfoStyle}" AcceptsReturn="True" Margin="0,5,0,15"
|
|
106 |
Grid.Column="1" Grid.ColumnSpan="3"/> |
|
84 | 107 |
</Grid> |
85 | 108 |
</UserControl> |
내보내기 Unified diff