markus / ConvertService / ServiceBase / Markus.Service.StationController / Views / DataBaseViewInfo.xaml @ 85f68fef
이력 | 보기 | 이력해설 | 다운로드 (5.68 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 | 85f68fef | semi | <Grid HorizontalAlignment="Stretch" ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto" VerticalAlignment="Stretch"> |
10 | <Grid.RowDefinitions>
|
||
11 | <RowDefinition/> |
||
12 | <RowDefinition/> |
||
13 | </Grid.RowDefinitions>
|
||
14 | 344ac7ed | alzkakdixm | <Grid.Resources>
|
15 | 85f68fef | semi | <Style TargetType="{x:Type TextBox}"> |
16 | b63dcfbb | semi | <Setter Property="Margin" Value="5,5,0,0"/> |
17 | <Setter Property="VerticalAlignment" Value="Center"/> |
||
18 | 85f68fef | semi | <Setter Property="HorizontalContentAlignment" Value="Left"/> |
19 | b63dcfbb | semi | <Setter Property="Foreground" Value="Black"/> |
20 | <Setter Property="Background" Value="Transparent"/> |
||
21 | <Setter Property="BorderBrush" Value="Transparent"/> |
||
22 | <Setter Property="BorderThickness" Value="0"/> |
||
23 | <Setter Property="IsReadOnly" Value="true"/> |
||
24 | <Setter Property="FocusVisualStyle" Value="{x:Null}"/> |
||
25 | <Setter Property="ScrollViewer.PanningMode" Value="VerticalFirst"/> |
||
26 | <Setter Property="Stylus.IsFlicksEnabled" Value="False"/> |
||
27 | <Setter Property="Template"> |
||
28 | <Setter.Value>
|
||
29 | <ControlTemplate TargetType="{x:Type TextBox}"> |
||
30 | <Border x:Name="Bd" |
||
31 | BorderThickness="{TemplateBinding BorderThickness}" |
||
32 | SnapsToDevicePixels="true"> |
||
33 | <ScrollViewer x:Name="PART_ContentHost" BorderThickness="{TemplateBinding BorderThickness}" |
||
34 | SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/> |
||
35 | </Border>
|
||
36 | </ControlTemplate>
|
||
37 | </Setter.Value>
|
||
38 | </Setter>
|
||
39 | 344ac7ed | alzkakdixm | </Style>
|
40 | 85f68fef | semi | <Style TargetType="DataGridCell"> |
41 | b63dcfbb | semi | <Setter Property="Margin" Value="10"/> |
42 | 85f68fef | semi | </Style>
|
43 | 344ac7ed | alzkakdixm | <Style TargetType="TextBlock"> |
44 | <Setter Property="FontWeight" Value="Bold"/> |
||
45 | b63dcfbb | semi | <Setter Property="Margin" Value="5,5,0,0"/> |
46 | 344ac7ed | alzkakdixm | <Setter Property="HorizontalAlignment" Value="Left"/> |
47 | <Setter Property="VerticalAlignment" Value="Center"/> |
||
48 | </Style>
|
||
49 | </Grid.Resources>
|
||
50 | 85f68fef | semi | <StackPanel>
|
51 | <Grid Grid.Row="0"> |
||
52 | <Grid.RowDefinitions>
|
||
53 | <RowDefinition Height="20" /> |
||
54 | <RowDefinition Height="20" /> |
||
55 | <RowDefinition Height="20" /> |
||
56 | <RowDefinition Height="20" /> |
||
57 | </Grid.RowDefinitions>
|
||
58 | <Grid.ColumnDefinitions>
|
||
59 | <ColumnDefinition Width="110" /> |
||
60 | <ColumnDefinition Width="10" /> |
||
61 | <ColumnDefinition Width="300"/> |
||
62 | <ColumnDefinition Width="115" /> |
||
63 | <ColumnDefinition Width="10"/> |
||
64 | <ColumnDefinition Width="300"/> |
||
65 | </Grid.ColumnDefinitions>
|
||
66 | <TextBlock Text="Group No: " |
||
67 | 8c7d1ea1 | alzkakdixm | Grid.Row="0" |
68 | Grid.Column="0"/> |
||
69 | 85f68fef | semi | <TextBox Text="{Binding GroupNo}" |
70 | Grid.Row="0" |
||
71 | b63dcfbb | semi | Grid.Column="2"/> |
72 | 85f68fef | semi | <TextBlock Text="Processor Affinity: " |
73 | Grid.Row="0" |
||
74 | Grid.Column="3"/> |
||
75 | <TextBox Text="{Binding ProcessorAffinity}" MaxWidth="300" |
||
76 | Grid.Row="0" |
||
77 | Grid.Column="5" /> |
||
78 | <TextBlock Text="Document No: " |
||
79 | 344ac7ed | alzkakdixm | Grid.Row="1" |
80 | 85f68fef | semi | Grid.Column="0" HorizontalAlignment="Stretch" /> |
81 | <TextBox Text="{Binding DocumnetNo}" |
||
82 | Grid.Row="1" |
||
83 | Grid.Column="2" /> |
||
84 | <TextBlock Text="ReConverter: " |
||
85 | Grid.Row="1" |
||
86 | 8c7d1ea1 | alzkakdixm | Grid.Column="3"/> |
87 | 85f68fef | semi | <TextBox Text="{Binding ReConverter}" MaxWidth="300" |
88 | Grid.Row="1" |
||
89 | Grid.Column="5"/> |
||
90 | <TextBlock Text="Document Name: " |
||
91 | 344ac7ed | alzkakdixm | Grid.Row="2" |
92 | 8c7d1ea1 | alzkakdixm | Grid.Column="0" /> |
93 | 85f68fef | semi | <TextBox Text="{Binding DocumnetName}" |
94 | Grid.Row="2" |
||
95 | 8c7d1ea1 | alzkakdixm | Grid.Column="2"/> |
96 | 85f68fef | semi | <TextBlock Text="Service ID: " |
97 | Grid.Row="2" |
||
98 | Grid.Column="3"/> |
||
99 | <TextBox Text="{Binding ServiceID}" MaxWidth="300" |
||
100 | Grid.Row="2" |
||
101 | Grid.Column="5" /> |
||
102 | <TextBlock Text="Revision: " |
||
103 | 8c7d1ea1 | alzkakdixm | Grid.Row="3" |
104 | Grid.Column="0"/> |
||
105 | 85f68fef | semi | <TextBox Text="{Binding Revision}" |
106 | Grid.Row="3" |
||
107 | Grid.Column="2"/> |
||
108 | </Grid>
|
||
109 | |||
110 | <Grid Grid.Row="1"> |
||
111 | <Grid.RowDefinitions>
|
||
112 | <RowDefinition Height="AUTO" /> |
||
113 | </Grid.RowDefinitions>
|
||
114 | <Grid.ColumnDefinitions>
|
||
115 | <ColumnDefinition Width="110" /> |
||
116 | <ColumnDefinition Width="10" /> |
||
117 | <ColumnDefinition Width="Auto"/> |
||
118 | </Grid.ColumnDefinitions>
|
||
119 | <TextBlock Text="Exception: " |
||
120 | b63dcfbb | semi | Grid.Row="4" Margin="5,5,0,15" |
121 | 8c7d1ea1 | alzkakdixm | Grid.Column="0"/> |
122 | 85f68fef | semi | <TextBox Text="{Binding Exception}" TextWrapping="Wrap" |
123 | Grid.Row="4" AcceptsReturn="True" Margin="0,5,0,15" |
||
124 | Grid.Column="2" Grid.ColumnSpan="4"/> |
||
125 | </Grid>
|
||
126 | </StackPanel>
|
||
127 | 344ac7ed | alzkakdixm | </Grid>
|
128 | 85f68fef | semi | </UserControl> |