프로젝트

일반

사용자정보

개정판 85f68fef

ID85f68fefb4051bb753d8de34a32dd92668ee5450
상위 1b4709fe
하위 83df6f8f

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

GridViewToggleRowDetailsColumn 변경

Change-Id: I10b9c3cc95e812ad3a93e4ff84123aebe005209d

차이점 보기:

ConvertService/ServiceBase/Markus.Service.StationController/Views/DataBaseViewInfo.xaml
6 6
      xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
7 7
      xmlns:local="clr-namespace:Markus.Service.StationController.Views"
8 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">
9
    <Grid HorizontalAlignment="Stretch" ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto"  VerticalAlignment="Stretch">
10
        <Grid.RowDefinitions>
11
            <RowDefinition/>
12
            <RowDefinition/>
13
        </Grid.RowDefinitions>
11 14
        <Grid.Resources>
12
            <Style x:Key="InfoStyle" TargetType="{x:Type TextBox}">
15
            <Style TargetType="{x:Type TextBox}">
13 16
                <Setter Property="Margin" Value="5,5,0,0"/>
14 17
                <Setter Property="VerticalAlignment" Value="Center"/>
18
                <Setter Property="HorizontalContentAlignment" Value="Left"/>
15 19
                <Setter Property="Foreground" Value="Black"/>
16 20
                <Setter Property="Background" Value="Transparent"/>
17 21
                <Setter Property="BorderBrush" Value="Transparent"/>
......
33 37
                    </Setter.Value>
34 38
                </Setter>
35 39
            </Style>
36
            <!--<Style TargetType="DataGridCell">
40
            <Style TargetType="DataGridCell">
37 41
                <Setter Property="Margin" Value="10"/>
38
            </Style>-->
42
            </Style>
39 43
            <Style TargetType="TextBlock">
40 44
                <Setter Property="FontWeight" Value="Bold"/>
41 45
                <Setter Property="Margin" Value="5,5,0,0"/>
......
43 47
                <Setter Property="VerticalAlignment" Value="Center"/>
44 48
            </Style>
45 49
        </Grid.Resources>
46
        <Grid.RowDefinitions>
47
            <RowDefinition Height="AUTO" />
48
            <RowDefinition Height="AUTO" />
49
            <RowDefinition Height="AUTO" />
50
            <RowDefinition Height="AUTO" />
51
            <RowDefinition Height="Auto" />
52
        </Grid.RowDefinitions>
53
        <Grid.ColumnDefinitions>
54
            <ColumnDefinition Width="Auto" />
55
            <ColumnDefinition Width="Auto" />
56
            <ColumnDefinition Width="Auto"/>
57
            <ColumnDefinition Width="Auto" />
58
        </Grid.ColumnDefinitions>
59
        <TextBlock Text="GROUP_NO: "
50
        <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: "
60 67
				   Grid.Row="0"
61 68
				   Grid.Column="0"/>
62
        <TextBox Text="{Binding GroupNo}" 
63
				   Grid.Row="0" Style="{StaticResource InfoStyle}"
64
				   Grid.Column="1"/>
65
        <TextBlock Text="ProcessorAffinity: "
66
				   Grid.Row="0" Margin="10,0,0,0"
69
                <TextBox Text="{Binding GroupNo}" 
70
				   Grid.Row="0"
67 71
				   Grid.Column="2"/>
68
        <TextBox Text="{Binding ProcessorAffinity}" Margin="10,0,0,0"
69
				   Grid.Row="0" Style="{StaticResource InfoStyle}"
70
				   Grid.Column="3" />
71
        <TextBlock Text="DOCUMENT_NO: "
72
                <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: "
72 79
				   Grid.Row="1"
73
				   Grid.Column="0" />
74
        <TextBox Text="{Binding DocumnetNo}"
75
				   Grid.Row="1" Style="{StaticResource InfoStyle}"
76
				   Grid.Column="1" />
77
        <TextBlock Text="ReConverter: "
78
				   Grid.Row="1" Margin="10,0,0,0"
79
				   Grid.Column="2"/>
80
        <TextBox Text="{Binding ReConverter}" Margin="10,0,0,0"
81
				   Grid.Row="1" Style="{StaticResource InfoStyle}"
80
				   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" 
82 86
				   Grid.Column="3"/>
83
        <TextBlock Text="DOCUMENT_NAME: "
87
                <TextBox Text="{Binding ReConverter}" MaxWidth="300"
88
				   Grid.Row="1" 
89
				   Grid.Column="5"/>
90
                <TextBlock Text="Document Name: "
84 91
				   Grid.Row="2"
85 92
				   Grid.Column="0" />
86
        <TextBox Text="{Binding DocumnetName}"
87
				   Grid.Row="2" Style="{StaticResource InfoStyle}"
88
				   Grid.Column="1"/>
89
        <TextBlock Text="Service ID: "
90
				   Grid.Row="2" Margin="10,0,0,0"
93
                <TextBox Text="{Binding DocumnetName}"
94
				   Grid.Row="2" 
91 95
				   Grid.Column="2"/>
92
        <TextBox Text="{Binding ServiceID}" HorizontalAlignment="Left" Margin="10,0,0,0"
93
				   Grid.Row="2" Style="{StaticResource InfoStyle}"
94
				   Grid.Column="3" Width="489"/>
95
        <TextBlock Text="REVISION: "
96
                <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: "
96 103
				   Grid.Row="3"
97 104
				   Grid.Column="0"/>
98
        <TextBox Text="{Binding Revision}"
99
				   Grid.Row="3" Style="{StaticResource InfoStyle}"
100
				   Grid.Column="1"/>
101
        <TextBlock Text="Exception: "
105
                <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: "
102 120
				   Grid.Row="4" Margin="5,5,0,15"
103 121
				   Grid.Column="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"/>
122
                <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>
107 127
    </Grid>
108
</UserControl>
128
</UserControl>

내보내기 Unified diff

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