markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / DataBaseViewInfo.xaml @ b63dcfbb
이력 | 보기 | 이력해설 | 다운로드 (5.08 KB)
1 | 344ac7ed | alzkakdixm | <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 | b63dcfbb | semi | xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
5 | 344ac7ed | alzkakdixm | 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 | b63dcfbb | semi | mc:Ignorable="d" Background="White" d:DesignHeight="450" d:DesignWidth="800"> |
9 | <Grid HorizontalAlignment="Stretch" ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto" |
||
10 | VerticalAlignment="Stretch"> |
||
11 | 344ac7ed | alzkakdixm | <Grid.Resources>
|
12 | b63dcfbb | semi | <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>
|
||
35 | 344ac7ed | alzkakdixm | </Style>
|
36 | b63dcfbb | semi | <!--<Style TargetType="DataGridCell">
|
37 | <Setter Property="Margin" Value="10"/>
|
||
38 | </Style>-->
|
||
39 | 344ac7ed | alzkakdixm | <Style TargetType="TextBlock"> |
40 | <Setter Property="FontWeight" Value="Bold"/> |
||
41 | b63dcfbb | semi | <Setter Property="Margin" Value="5,5,0,0"/> |
42 | 344ac7ed | alzkakdixm | <Setter Property="HorizontalAlignment" Value="Left"/> |
43 | <Setter Property="VerticalAlignment" Value="Center"/> |
||
44 | </Style>
|
||
45 | </Grid.Resources>
|
||
46 | <Grid.RowDefinitions>
|
||
47 | 8c7d1ea1 | alzkakdixm | <RowDefinition Height="AUTO" /> |
48 | <RowDefinition Height="AUTO" /> |
||
49 | <RowDefinition Height="AUTO" /> |
||
50 | <RowDefinition Height="AUTO" /> |
||
51 | b63dcfbb | semi | <RowDefinition Height="Auto" /> |
52 | 344ac7ed | alzkakdixm | </Grid.RowDefinitions>
|
53 | <Grid.ColumnDefinitions>
|
||
54 | <ColumnDefinition Width="Auto" /> |
||
55 | <ColumnDefinition Width="Auto" /> |
||
56 | 8c7d1ea1 | alzkakdixm | <ColumnDefinition Width="Auto"/> |
57 | b63dcfbb | semi | <ColumnDefinition Width="Auto" /> |
58 | 344ac7ed | alzkakdixm | </Grid.ColumnDefinitions>
|
59 | <TextBlock Text="GROUP_NO: " |
||
60 | 8c7d1ea1 | alzkakdixm | Grid.Row="0" |
61 | Grid.Column="0"/> |
||
62 | b63dcfbb | semi | <TextBox Text="{Binding GroupNo}" |
63 | Grid.Row="0" Style="{StaticResource InfoStyle}" |
||
64 | Grid.Column="1"/> |
||
65 | 8c7d1ea1 | alzkakdixm | <TextBlock Text="ProcessorAffinity: " |
66 | b63dcfbb | semi | 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}" |
||
70 | 8c7d1ea1 | alzkakdixm | Grid.Column="3" /> |
71 | 344ac7ed | alzkakdixm | <TextBlock Text="DOCUMENT_NO: " |
72 | Grid.Row="1" |
||
73 | 8c7d1ea1 | alzkakdixm | Grid.Column="0" /> |
74 | 344ac7ed | alzkakdixm | <TextBox Text="{Binding DocumnetNo}" |
75 | b63dcfbb | semi | Grid.Row="1" Style="{StaticResource InfoStyle}" |
76 | 8c7d1ea1 | alzkakdixm | Grid.Column="1" /> |
77 | <TextBlock Text="ReConverter: " |
||
78 | b63dcfbb | semi | Grid.Row="1" Margin="10,0,0,0" |
79 | 8c7d1ea1 | alzkakdixm | Grid.Column="2"/> |
80 | b63dcfbb | semi | <TextBox Text="{Binding ReConverter}" Margin="10,0,0,0" |
81 | Grid.Row="1" Style="{StaticResource InfoStyle}" |
||
82 | 8c7d1ea1 | alzkakdixm | Grid.Column="3"/> |
83 | 344ac7ed | alzkakdixm | <TextBlock Text="DOCUMENT_NAME: " |
84 | Grid.Row="2" |
||
85 | 8c7d1ea1 | alzkakdixm | Grid.Column="0" /> |
86 | 344ac7ed | alzkakdixm | <TextBox Text="{Binding DocumnetName}" |
87 | b63dcfbb | semi | Grid.Row="2" Style="{StaticResource InfoStyle}" |
88 | 8c7d1ea1 | alzkakdixm | Grid.Column="1"/> |
89 | 344ac7ed | alzkakdixm | <TextBlock Text="Service ID: " |
90 | b63dcfbb | semi | Grid.Row="2" Margin="10,0,0,0" |
91 | 8c7d1ea1 | alzkakdixm | Grid.Column="2"/> |
92 | b63dcfbb | semi | <TextBox Text="{Binding ServiceID}" HorizontalAlignment="Left" Margin="10,0,0,0" |
93 | Grid.Row="2" Style="{StaticResource InfoStyle}" |
||
94 | 8c7d1ea1 | alzkakdixm | Grid.Column="3" Width="489"/> |
95 | <TextBlock Text="REVISION: " |
||
96 | Grid.Row="3" |
||
97 | Grid.Column="0"/> |
||
98 | <TextBox Text="{Binding Revision}" |
||
99 | b63dcfbb | semi | Grid.Row="3" Style="{StaticResource InfoStyle}" |
100 | 8c7d1ea1 | alzkakdixm | Grid.Column="1"/> |
101 | <TextBlock Text="Exception: " |
||
102 | b63dcfbb | semi | Grid.Row="4" Margin="5,5,0,15" |
103 | 8c7d1ea1 | alzkakdixm | Grid.Column="0"/> |
104 | b63dcfbb | semi | <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"/> |
||
107 | 344ac7ed | alzkakdixm | </Grid>
|
108 | </UserControl> |