프로젝트

일반

사용자정보

개정판 8c7d1ea1

ID8c7d1ea1e445cfd1865fd52b000a44c58dcca3b7
상위 344ac7ed
하위 da3feefa

alzkakdixm 이(가) 약 5년 전에 추가함

DataBaseItemsModel 수정

Change-Id: I90ab052d201b2ef824098c5ca2a08f7d703bdce2

차이점 보기:

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 5
      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
5 6
      xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
6 7
      xmlns:local="clr-namespace:Markus.Service.StationController.Views"
7
      mc:Ignorable="d" 
8
      mc:Ignorable="d" Background="White"
8 9
      d:DesignHeight="450" d:DesignWidth="800">
9 10
    <Grid Width="Auto"
10
		  HorizontalAlignment="Stretch">
11
		  HorizontalAlignment="Stretch" Margin="10">
11 12
        <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"/>
13
            <Style TargetType="DataGridCell">
14
                <Setter Property="Margin" Value="10"/>
18 15
            </Style>
19 16
            <Style TargetType="TextBlock">
20 17
                <Setter Property="FontWeight" Value="Bold"/>
21
                <Setter Property="Margin" Value="5,0,0,0"/>
18
                <Setter Property="Margin" Value="5"/>
22 19
                <Setter Property="HorizontalAlignment" Value="Left"/>
23 20
                <Setter Property="VerticalAlignment" Value="Center"/>
24 21
            </Style>
25 22
        </Grid.Resources>
26 23
        <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" />
24
            <RowDefinition Height="AUTO" />
25
            <RowDefinition Height="AUTO" />
26
            <RowDefinition Height="AUTO" />
27
            <RowDefinition Height="AUTO" />
28
            <RowDefinition Height="AUTO" />
33 29
        </Grid.RowDefinitions>
34 30
        <Grid.ColumnDefinitions>
35 31
            <ColumnDefinition Width="Auto" />
36 32
            <ColumnDefinition Width="Auto" />
37
            <ColumnDefinition Width="150" />
38
            <ColumnDefinition Width="10" />
39
            <ColumnDefinition Width="Auto" />
40
            <ColumnDefinition Width="*" />
33
            <ColumnDefinition Width="Auto"/>
34
            <ColumnDefinition Width="100" />
41 35
        </Grid.ColumnDefinitions>
42 36
        <TextBlock Text="GROUP_NO: "
43
				   Grid.Row="1"
44
				   Grid.Column="1"/>
37
				   Grid.Row="0"
38
				   Grid.Column="0"/>
45 39
        <TextBox Text="{Binding GroupNo}"
46
				   Grid.Row="1"
47
				   Grid.Column="2" />
48
        <TextBlock Text="ProcessorAffinity: "
49
				   Grid.Row="2"
40
				   Grid.Row="0"  BorderThickness="0"  IsReadOnly="True"
50 41
				   Grid.Column="1" />
42
        <TextBlock Text="ProcessorAffinity: "
43
				   Grid.Row="0"
44
				   Grid.Column="2" Margin="10"/>
51 45
        <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" />
46
				   Grid.Row="0" BorderThickness="0" IsReadOnly="True"
47
				   Grid.Column="3" />
73 48
        <TextBlock Text="DOCUMENT_NO: "
74 49
				   Grid.Row="1"
75
				   Grid.Column="4" />
50
				   Grid.Column="0" />
76 51
        <TextBox Text="{Binding DocumnetNo}"
77
				   Grid.Row="1" 
78
				   Grid.Column="5" />
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"/>
79 60
        <TextBlock Text="DOCUMENT_NAME: "
80 61
				   Grid.Row="2"
81
				   Grid.Column="4" />
62
				   Grid.Column="0" />
82 63
        <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" />
64
				   Grid.Row="2" BorderThickness="0" IsReadOnly="True"
65
				   Grid.Column="1"/>
91 66
        <TextBlock Text="Service ID: "
92
				   Grid.Row="4"
93
				   Grid.Column="4"/>
67
				   Grid.Row="2" Margin="10"
68
				   Grid.Column="2"/>
94 69
        <TextBox Text="{Binding ServiceID}"
95
				   Grid.Row="4" 
96
				   Grid.Column="5" />
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"/>
97 84
    </Grid>
98 85
</UserControl>

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)