프로젝트

일반

사용자정보

개정판 6a19b48d

ID6a19b48d4d65f0132542748dacd26fb0b1c9c89a
상위 c1946e9c
하위 d2050059, f5f788c2

김태성이(가) 약 2년 전에 추가함

issue #00000 페이지 이미지 download 로직 수정

Change-Id: I4da03c36b5a135eea80b57b20ada38239afd1082

차이점 보기:

KCOM/Views/MainMenu.xaml
1
<UserControl xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"  x:Class="KCOM.Views.MainMenu"
2
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
             xmlns:toggle="clr-namespace:ToggleSwitch;assembly=ToggleSwitch"
4
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
5
             xmlns:telerikGrid="clr-namespace:Telerik.Windows.Controls.GridView;assembly=Telerik.Windows.Controls.GridView"
6
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
7
             xmlns:converter="clr-namespace:KCOM.Common.Converter"
8
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"  xmlns:common="clr-namespace:KCOM.Common"
9
             xmlns:controls="clr-namespace:KCOM.Controls"  xmlns:ZoomAndPan="clr-namespace:ZoomAndPan;assembly=ZoomAndPan"
10
             mc:Ignorable="d"   
11
             d:DesignHeight="768" d:DesignWidth="1080" IsTabStop="True" xmlns:messanger="clr-namespace:KCOM.Messenger"
12
             xmlns:Angle="clr-namespace:MarkupToPDF.Controls.Angle;assembly=MarkupToPDF">
1
<UserControl
2
    x:Class="KCOM.Views.MainMenu"
3
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5
    xmlns:Angle="clr-namespace:MarkupToPDF.Controls.Angle;assembly=MarkupToPDF"
6
    xmlns:ZoomAndPan="clr-namespace:ZoomAndPan;assembly=ZoomAndPan"
7
    xmlns:common="clr-namespace:KCOM.Common"
8
    xmlns:controls="clr-namespace:KCOM.Controls"
9
    xmlns:converter="clr-namespace:KCOM.Common.Converter"
10
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
11
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
12
    xmlns:messanger="clr-namespace:KCOM.Messenger"
13
    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
14
    xmlns:telerikGrid="clr-namespace:Telerik.Windows.Controls.GridView;assembly=Telerik.Windows.Controls.GridView"
15
    xmlns:toggle="clr-namespace:ToggleSwitch;assembly=ToggleSwitch"
16
    d:DesignHeight="768"
17
    d:DesignWidth="1080"
18
    IsTabStop="True"
19
    mc:Ignorable="d">
13 20
    <UserControl.Resources>
14
        <converter:ZeroToCollapsedConverter x:Key="ZeroToCollapsedConverter"/>
15
        <Style TargetType="{x:Type telerikGrid:GridViewHeaderCell}" x:Key="GridViewHeaderStyle">
16
            <Setter Property="VerticalContentAlignment" Value="Center"/>
17
            <Setter Property="HorizontalContentAlignment" Value="Center"/>
18
            <Setter Property="BorderThickness" Value="0"/>
21
        <converter:ZeroToCollapsedConverter x:Key="ZeroToCollapsedConverter" />
22
        <Style x:Key="GridViewHeaderStyle" TargetType="{x:Type telerikGrid:GridViewHeaderCell}">
23
            <Setter Property="VerticalContentAlignment" Value="Center" />
24
            <Setter Property="HorizontalContentAlignment" Value="Center" />
25
            <Setter Property="BorderThickness" Value="0" />
19 26
            <Setter Property="Background">
20 27
                <Setter.Value>
21
                    <SolidColorBrush Color="Black" Opacity="0.5"/>
28
                    <SolidColorBrush Opacity="0.5" Color="Black" />
22 29
                </Setter.Value>
23 30
            </Setter>
24 31
            <!--<Setter Property="Background" Value="Black"/>-->
25
            <Setter Property="BorderBrush" Value="White"/>
26
            <Setter Property="Foreground" Value="White"/>
27
            <Setter Property="telerik:StyleManager.Theme" Value="Office2013"/>
32
            <Setter Property="BorderBrush" Value="White" />
33
            <Setter Property="Foreground" Value="White" />
34
            <Setter Property="telerik:StyleManager.Theme" Value="Office2013" />
28 35
            <!--<Setter Property="FontWeight" Value="Black"/>-->
29 36
        </Style>
30 37
        <Style x:Key="GridViewAlign" TargetType="{x:Type telerikGrid:GridViewCell}">
......
34 41
                    <TextDecorationCollection>
35 42
                        <TextDecoration Location="Underline" />
36 43
                        <TextDecoration Location="Overline" />
37
                        <TextDecoration  
38
        	PenThicknessUnit="FontRecommended">
44
                        <TextDecoration PenThicknessUnit="FontRecommended">
39 45
                            <TextDecoration.Pen>
40 46
                                <Pen Thickness="1.0">
41 47
                                    <Pen.Brush>
42
                                        <LinearGradientBrush Opacity="0.5"
43
                		StartPoint="0,0.5"  EndPoint="1,0.5">
44
                                            <GradientStop Color="Yellow" Offset="0" />
45
                                            <GradientStop Color="Red" Offset="1" />
48
                                        <LinearGradientBrush Opacity="0.5" StartPoint="0,0.5" EndPoint="1,0.5">
49
                                            <GradientStop Offset="0" Color="Yellow" />
50
                                            <GradientStop Offset="1" Color="Red" />
46 51
                                        </LinearGradientBrush>
47 52
                                    </Pen.Brush>
48 53
                                </Pen>
......
52 57
                </Setter.Value>
53 58
            </Setter>
54 59
        </Style>
55
        <converter:PDFVisibleConverter x:Key="PDFVisibleConverter"/>
60
        <converter:PDFVisibleConverter x:Key="PDFVisibleConverter" />
56 61
        <converter:ConsolidationBackgroudConverter x:Key="ConsolidationBackgroudConverter" />
57
        <converter:StringToColorConverter x:Key="StringToColorConverter"/>
62
        <converter:StringToColorConverter x:Key="StringToColorConverter" />
58 63
        <converter:AvoidStringConverter x:Key="AvoidStringConverter" />
59 64
        <converter:TeamConsolidateStringConverter x:Key="TeamConsoliStringConverter" />
60 65
        <converter:ConsolidationStringConverter x:Key="ConsoliStringConverter" />
61 66
        <converter:BoolToVisibleConverter x:Key="BoolToVisibleConverter" />
62
        <converter:PreviewerVisibleConverter x:Key="previewerVisibleConverter"/>
67
        <converter:PreviewerVisibleConverter x:Key="previewerVisibleConverter" />
63 68
        <ControlTemplate x:Key="RadSplitContainerControlTemplate" TargetType="{x:Type telerik:RadSplitContainer}">
64 69
            <Grid>
70
                <Border
71
                    x:Name="border"
72
                    Padding="{TemplateBinding Padding}"
73
                    Background="{TemplateBinding Background}"
74
                    BorderBrush="{TemplateBinding BorderBrush}"
75
                    BorderThickness="{TemplateBinding BorderThickness}">
76
                    <ItemsPresenter />
77
                </Border>
78
                <telerik:RadGridResizer
79
                    x:Name="DockResizer"
80
                    HorizontalAlignment="Left"
81
                    VerticalAlignment="Stretch"
82
                    Cursor="SizeWE"
83
                    Focusable="False"
84
                    Placement="Left"
85
                    ShowsPreview="True"
86
                    Visibility="Collapsed" />
65 87
                <VisualStateManager.VisualStateGroups>
66 88
                    <VisualStateGroup x:Name="ResizerStates">
67 89
                        <VisualState x:Name="ResizerLeft">
68 90
                            <Storyboard>
69
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="Visibility" Storyboard.TargetName="DockResizer">
91
                                <ObjectAnimationUsingKeyFrames
92
                                    Storyboard.TargetName="DockResizer"
93
                                    Storyboard.TargetProperty="Visibility"
94
                                    Duration="0">
70 95
                                    <DiscreteObjectKeyFrame KeyTime="0">
71 96
                                        <DiscreteObjectKeyFrame.Value>
72 97
                                            <Visibility>Visible</Visibility>
73 98
                                        </DiscreteObjectKeyFrame.Value>
74 99
                                    </DiscreteObjectKeyFrame>
75 100
                                </ObjectAnimationUsingKeyFrames>
76
                                <DoubleAnimation BeginTime="0" From="4" To="4" Storyboard.TargetProperty="MinWidth" Storyboard.TargetName="DockResizer"/>
77
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="Margin" Storyboard.TargetName="border">
101
                                <DoubleAnimation
102
                                    BeginTime="0"
103
                                    Storyboard.TargetName="DockResizer"
104
                                    Storyboard.TargetProperty="MinWidth"
105
                                    From="4"
106
                                    To="4" />
107
                                <ObjectAnimationUsingKeyFrames
108
                                    Storyboard.TargetName="border"
109
                                    Storyboard.TargetProperty="Margin"
110
                                    Duration="0">
78 111
                                    <DiscreteObjectKeyFrame KeyTime="0">
79 112
                                        <DiscreteObjectKeyFrame.Value>
80 113
                                            <Thickness>4,0,0,0</Thickness>
......
85 118
                        </VisualState>
86 119
                        <VisualState x:Name="ResizerTop">
87 120
                            <Storyboard>
88
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="Visibility" Storyboard.TargetName="DockResizer">
121
                                <ObjectAnimationUsingKeyFrames
122
                                    Storyboard.TargetName="DockResizer"
123
                                    Storyboard.TargetProperty="Visibility"
124
                                    Duration="0">
89 125
                                    <DiscreteObjectKeyFrame KeyTime="0">
90 126
                                        <DiscreteObjectKeyFrame.Value>
91 127
                                            <Visibility>Visible</Visibility>
92 128
                                        </DiscreteObjectKeyFrame.Value>
93 129
                                    </DiscreteObjectKeyFrame>
94 130
                                </ObjectAnimationUsingKeyFrames>
95
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="VerticalAlignment" Storyboard.TargetName="DockResizer">
131
                                <ObjectAnimationUsingKeyFrames
132
                                    Storyboard.TargetName="DockResizer"
133
                                    Storyboard.TargetProperty="VerticalAlignment"
134
                                    Duration="0">
96 135
                                    <DiscreteObjectKeyFrame KeyTime="0">
97 136
                                        <DiscreteObjectKeyFrame.Value>
98 137
                                            <VerticalAlignment>Top</VerticalAlignment>
99 138
                                        </DiscreteObjectKeyFrame.Value>
100 139
                                    </DiscreteObjectKeyFrame>
101 140
                                </ObjectAnimationUsingKeyFrames>
102
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="HorizontalAlignment" Storyboard.TargetName="DockResizer">
141
                                <ObjectAnimationUsingKeyFrames
142
                                    Storyboard.TargetName="DockResizer"
143
                                    Storyboard.TargetProperty="HorizontalAlignment"
144
                                    Duration="0">
103 145
                                    <DiscreteObjectKeyFrame KeyTime="0">
104 146
                                        <DiscreteObjectKeyFrame.Value>
105 147
                                            <HorizontalAlignment>Stretch</HorizontalAlignment>
106 148
                                        </DiscreteObjectKeyFrame.Value>
107 149
                                    </DiscreteObjectKeyFrame>
108 150
                                </ObjectAnimationUsingKeyFrames>
109
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="Placement" Storyboard.TargetName="DockResizer">
151
                                <ObjectAnimationUsingKeyFrames
152
                                    Storyboard.TargetName="DockResizer"
153
                                    Storyboard.TargetProperty="Placement"
154
                                    Duration="0">
110 155
                                    <DiscreteObjectKeyFrame KeyTime="0">
111 156
                                        <DiscreteObjectKeyFrame.Value>
112 157
                                            <Dock>Top</Dock>
113 158
                                        </DiscreteObjectKeyFrame.Value>
114 159
                                    </DiscreteObjectKeyFrame>
115 160
                                </ObjectAnimationUsingKeyFrames>
116
                                <DoubleAnimation BeginTime="0" From="4" To="4" Storyboard.TargetProperty="MinHeight" Storyboard.TargetName="DockResizer"/>
117
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="Margin" Storyboard.TargetName="border">
161
                                <DoubleAnimation
162
                                    BeginTime="0"
163
                                    Storyboard.TargetName="DockResizer"
164
                                    Storyboard.TargetProperty="MinHeight"
165
                                    From="4"
166
                                    To="4" />
167
                                <ObjectAnimationUsingKeyFrames
168
                                    Storyboard.TargetName="border"
169
                                    Storyboard.TargetProperty="Margin"
170
                                    Duration="0">
118 171
                                    <DiscreteObjectKeyFrame KeyTime="0">
119 172
                                        <DiscreteObjectKeyFrame.Value>
120 173
                                            <Thickness>0,4,0,0</Thickness>
......
125 178
                        </VisualState>
126 179
                        <VisualState x:Name="ResizerRight">
127 180
                            <Storyboard>
128
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="Visibility" Storyboard.TargetName="DockResizer">
181
                                <ObjectAnimationUsingKeyFrames
182
                                    Storyboard.TargetName="DockResizer"
183
                                    Storyboard.TargetProperty="Visibility"
184
                                    Duration="0">
129 185
                                    <DiscreteObjectKeyFrame KeyTime="0">
130 186
                                        <DiscreteObjectKeyFrame.Value>
131 187
                                            <Visibility>Visible</Visibility>
132 188
                                        </DiscreteObjectKeyFrame.Value>
133 189
                                    </DiscreteObjectKeyFrame>
134 190
                                </ObjectAnimationUsingKeyFrames>
135
                                <DoubleAnimation BeginTime="0" From="4" To="4" Storyboard.TargetProperty="MinWidth" Storyboard.TargetName="DockResizer"/>
136
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="Margin" Storyboard.TargetName="border">
191
                                <DoubleAnimation
192
                                    BeginTime="0"
193
                                    Storyboard.TargetName="DockResizer"
194
                                    Storyboard.TargetProperty="MinWidth"
195
                                    From="4"
196
                                    To="4" />
197
                                <ObjectAnimationUsingKeyFrames
198
                                    Storyboard.TargetName="border"
199
                                    Storyboard.TargetProperty="Margin"
200
                                    Duration="0">
137 201
                                    <DiscreteObjectKeyFrame KeyTime="0">
138 202
                                        <DiscreteObjectKeyFrame.Value>
139 203
                                            <Thickness>0,0,4,0</Thickness>
140 204
                                        </DiscreteObjectKeyFrame.Value>
141 205
                                    </DiscreteObjectKeyFrame>
142 206
                                </ObjectAnimationUsingKeyFrames>
143
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="HorizontalAlignment" Storyboard.TargetName="DockResizer">
207
                                <ObjectAnimationUsingKeyFrames
208
                                    Storyboard.TargetName="DockResizer"
209
                                    Storyboard.TargetProperty="HorizontalAlignment"
210
                                    Duration="0">
144 211
                                    <DiscreteObjectKeyFrame KeyTime="0">
145 212
                                        <DiscreteObjectKeyFrame.Value>
146 213
                                            <HorizontalAlignment>Right</HorizontalAlignment>
147 214
                                        </DiscreteObjectKeyFrame.Value>
148 215
                                    </DiscreteObjectKeyFrame>
149 216
                                </ObjectAnimationUsingKeyFrames>
150
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="Placement" Storyboard.TargetName="DockResizer">
217
                                <ObjectAnimationUsingKeyFrames
218
                                    Storyboard.TargetName="DockResizer"
219
                                    Storyboard.TargetProperty="Placement"
220
                                    Duration="0">
151 221
                                    <DiscreteObjectKeyFrame KeyTime="0">
152 222
                                        <DiscreteObjectKeyFrame.Value>
153 223
                                            <Dock>Right</Dock>
......
158 228
                        </VisualState>
159 229
                        <VisualState x:Name="ResizerBottom">
160 230
                            <Storyboard>
161
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="Visibility" Storyboard.TargetName="DockResizer">
231
                                <ObjectAnimationUsingKeyFrames
232
                                    Storyboard.TargetName="DockResizer"
233
                                    Storyboard.TargetProperty="Visibility"
234
                                    Duration="0">
162 235
                                    <DiscreteObjectKeyFrame KeyTime="0">
163 236
                                        <DiscreteObjectKeyFrame.Value>
164 237
                                            <Visibility>Visible</Visibility>
165 238
                                        </DiscreteObjectKeyFrame.Value>
166 239
                                    </DiscreteObjectKeyFrame>
167 240
                                </ObjectAnimationUsingKeyFrames>
168
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="VerticalAlignment" Storyboard.TargetName="DockResizer">
241
                                <ObjectAnimationUsingKeyFrames
242
                                    Storyboard.TargetName="DockResizer"
243
                                    Storyboard.TargetProperty="VerticalAlignment"
244
                                    Duration="0">
169 245
                                    <DiscreteObjectKeyFrame KeyTime="0">
170 246
                                        <DiscreteObjectKeyFrame.Value>
171 247
                                            <VerticalAlignment>Bottom</VerticalAlignment>
172 248
                                        </DiscreteObjectKeyFrame.Value>
173 249
                                    </DiscreteObjectKeyFrame>
174 250
                                </ObjectAnimationUsingKeyFrames>
175
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="HorizontalAlignment" Storyboard.TargetName="DockResizer">
251
                                <ObjectAnimationUsingKeyFrames
252
                                    Storyboard.TargetName="DockResizer"
253
                                    Storyboard.TargetProperty="HorizontalAlignment"
254
                                    Duration="0">
176 255
                                    <DiscreteObjectKeyFrame KeyTime="0">
177 256
                                        <DiscreteObjectKeyFrame.Value>
178 257
                                            <HorizontalAlignment>Stretch</HorizontalAlignment>
179 258
                                        </DiscreteObjectKeyFrame.Value>
180 259
                                    </DiscreteObjectKeyFrame>
181 260
                                </ObjectAnimationUsingKeyFrames>
182
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="Placement" Storyboard.TargetName="DockResizer">
261
                                <ObjectAnimationUsingKeyFrames
262
                                    Storyboard.TargetName="DockResizer"
263
                                    Storyboard.TargetProperty="Placement"
264
                                    Duration="0">
183 265
                                    <DiscreteObjectKeyFrame KeyTime="0">
184 266
                                        <DiscreteObjectKeyFrame.Value>
185 267
                                            <Dock>Bottom</Dock>
186 268
                                        </DiscreteObjectKeyFrame.Value>
187 269
                                    </DiscreteObjectKeyFrame>
188 270
                                </ObjectAnimationUsingKeyFrames>
189
                                <DoubleAnimation BeginTime="0" From="4" To="4" Storyboard.TargetProperty="MinHeight" Storyboard.TargetName="DockResizer"/>
190
                                <ObjectAnimationUsingKeyFrames Duration="0" Storyboard.TargetProperty="Margin" Storyboard.TargetName="border">
271
                                <DoubleAnimation
272
                                    BeginTime="0"
273
                                    Storyboard.TargetName="DockResizer"
274
                                    Storyboard.TargetProperty="MinHeight"
275
                                    From="4"
276
                                    To="4" />
277
                                <ObjectAnimationUsingKeyFrames
278
                                    Storyboard.TargetName="border"
279
                                    Storyboard.TargetProperty="Margin"
280
                                    Duration="0">
191 281
                                    <DiscreteObjectKeyFrame KeyTime="0">
192 282
                                        <DiscreteObjectKeyFrame.Value>
193 283
                                            <Thickness>0,0,0,4</Thickness>
......
196 286
                                </ObjectAnimationUsingKeyFrames>
197 287
                            </Storyboard>
198 288
                        </VisualState>
199
                        <VisualState x:Name="HideResizer"/>
289
                        <VisualState x:Name="HideResizer" />
200 290
                    </VisualStateGroup>
201 291
                </VisualStateManager.VisualStateGroups>
202
                <Border x:Name="border" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" Padding="{TemplateBinding Padding}">
203
                    <ItemsPresenter/>
204
                </Border>
205
                <telerik:RadGridResizer Focusable="False" x:Name="DockResizer" Cursor="SizeWE"  HorizontalAlignment="Left" Placement="Left" ShowsPreview="True" Visibility="Collapsed" VerticalAlignment="Stretch">
206
                </telerik:RadGridResizer>
207 292
            </Grid>
208 293
        </ControlTemplate>
209 294
    </UserControl.Resources>
......
213 298
            <ColumnDefinition Width="*"/>
214 299
        </Grid.ColumnDefinitions>-->
215 300
        <!--<Border Background="#fff5f5f5" BorderBrush="#d5d5d5" BorderThickness="0">
216
            -->
301
        -->
217 302
        <!--<controls:PageNavigator x:Name="pageNavigator" Grid.Row="1" Width="200"/>-->
218 303
        <!--
219 304
            <telerik:RadLayoutControl SelectedItem="{x:Null}" VirtualizingStackPanel.VirtualizationMode="Recycling" ScrollViewer.VerticalScrollBarVisibility="Hi">
220 305
                <telerik:LayoutControlTabGroup Template="{DynamicResource TabControlTemplate}" telerik:StyleManager.Theme="Office2016">
221 306
                    <telerik:LayoutControlTabGroupItem Header="Thumbnail">
222
                        <telerik:LayoutControlGroup BorderBrush="Transparent" Padding="5" Margin="0,-3">                            
223
                            <controls:PageNavigator x:Name="pageNavigator" Grid.Row="1" Width="300"/>                            
307
                        <telerik:LayoutControlGroup BorderBrush="Transparent" Padding="5" Margin="0,-3">
308
                            <controls:PageNavigator x:Name="pageNavigator" Grid.Row="1" Width="300"/>
224 309
                        </telerik:LayoutControlGroup>
225 310
                    </telerik:LayoutControlTabGroupItem>
226 311
                    <telerik:LayoutControlTabGroupItem Header="Bookmark">
......
239 324
        <!--<Border Background="{DynamicResource Office2016Color_PrimaryBrush}">
240 325
            <Border Background="White" Margin="50"/>
241 326
        </Border>-->
242
        <telerik:RadDocking BorderThickness="0" Padding="0" Background="{DynamicResource KCOMColor_MainBrush}" Grid.Column="1">
327
        <telerik:RadDocking
328
            Grid.Column="1"
329
            Padding="0"
330
            Background="{DynamicResource KCOMColor_MainBrush}"
331
            BorderThickness="0">
243 332
            <telerik:RadDocking.DocumentHost>
244
                <telerik:RadSplitContainer x:Name="splitContainerMain" Background="Transparent" Margin="0,-1,0,0"  Template="{DynamicResource RadSplitContainerControlTemplate}">
333
                <telerik:RadSplitContainer
334
                    x:Name="splitContainerMain"
335
                    Margin="0,-1,0,0"
336
                    Background="Transparent"
337
                    Template="{DynamicResource RadSplitContainerControlTemplate}">
245 338
                    <telerik:RadPaneGroup Style="{DynamicResource Style_RadPanelGroup}">
246
                        <telerik:RadDocumentPane x:Name="MainDocumentPanel" Header="VP-320A-728063" CanFloat="False" CanUserClose="False" Title="Document 1" PaneHeaderVisibility="Collapsed" Margin="0,-20,0,0">
339
                        <telerik:RadDocumentPane
340
                            x:Name="MainDocumentPanel"
341
                            Title="Document 1"
342
                            Margin="0,-20,0,0"
343
                            CanFloat="False"
344
                            CanUserClose="False"
345
                            Header="VP-320A-728063"
346
                            PaneHeaderVisibility="Collapsed">
247 347
                            <telerik:RadDocumentPane.HeaderTemplate>
248 348
                                <DataTemplate>
249
                                    <Border Margin="0,0,0,0"/>
349
                                    <Border Margin="0,0,0,0" />
250 350
                                </DataTemplate>
251 351
                            </telerik:RadDocumentPane.HeaderTemplate>
252 352
                            <!--<Grid Background="{DynamicResource KCOMColor_AlternativeBrush}">-->
253 353
                            <Grid Background="{DynamicResource KCOMColor_DocumnetBackgroundBrush}">
254
                                <Rectangle Name="rect" Margin="50,50,0,0" Width="100" Height="100" Fill="LightBlue"/>
255
                                <Popup Name="floatingTip" AllowsTransparency="True" Placement="Relative" PlacementTarget="{Binding ElementName=rect}">
256
                                    <TextBlock x:Name="txtBatch" Foreground="Red" FontSize="20" Text="Mark Control을 그립니다."/>
354
                                <Rectangle
355
                                    Name="rect"
356
                                    Width="100"
357
                                    Height="100"
358
                                    Margin="50,50,0,0"
359
                                    Fill="LightBlue" />
360
                                <Popup
361
                                    Name="floatingTip"
362
                                    AllowsTransparency="True"
363
                                    Placement="Relative"
364
                                    PlacementTarget="{Binding ElementName=rect}">
365
                                    <TextBlock
366
                                        x:Name="txtBatch"
367
                                        FontSize="20"
368
                                        Foreground="Red"
369
                                        Text="Mark Control을 그립니다." />
257 370
                                </Popup>
258
                                <ZoomAndPan:ZoomAndPanControl x:Name="zoomAndPanControl"
259
                                                              MouseWheel="zoomAndPanControl_MouseWheel"
260
                                                              MouseDown="zoomAndPanControl_MouseDown"
261
                                                              MouseMove="zoomAndPanControl_MouseMove"
262
                                                              MouseUp="zoomAndPanControl_MouseUp"
263
                                                              MouseLeave="zoomAndPanControl_MouseLeave"
264
                                                              ScaleChanged="ZoomAndPanControl_ScaleChanged"
265
                                                              MouseDoubleClick="zoomAndPanControl_MouseDoubleClick"
266
                                                              ContentScale="{Binding ContentScale, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
267
                                                              ContentOffsetX="{Binding ContentOffsetX, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
268
                                                              ContentOffsetY="{Binding ContentOffsetY, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
269
                                                              ConstrainedContentViewportWidth="{Binding ContentViewportWidth, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
270
                                                              ConstrainedContentViewportHeight="{Binding ContentViewportHeight, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
271
                                                              Background="LightGray">
272
                                    <Canvas x:Name="zoomAndPanCanvas" Opacity="1" Background="White">
371
                                <ZoomAndPan:ZoomAndPanControl
372
                                    x:Name="zoomAndPanControl"
373
                                    Background="LightGray"
374
                                    ConstrainedContentViewportHeight="{Binding ContentViewportHeight, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
375
                                    ConstrainedContentViewportWidth="{Binding ContentViewportWidth, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
376
                                    ContentOffsetX="{Binding ContentOffsetX, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
377
                                    ContentOffsetY="{Binding ContentOffsetY, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
378
                                    ContentScale="{Binding ContentScale, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
379
                                    MouseDoubleClick="zoomAndPanControl_MouseDoubleClick"
380
                                    MouseDown="zoomAndPanControl_MouseDown"
381
                                    MouseLeave="zoomAndPanControl_MouseLeave"
382
                                    MouseMove="zoomAndPanControl_MouseMove"
383
                                    MouseUp="zoomAndPanControl_MouseUp"
384
                                    MouseWheel="zoomAndPanControl_MouseWheel"
385
                                    ScaleChanged="ZoomAndPanControl_ScaleChanged">
386
                                    <Canvas
387
                                        x:Name="zoomAndPanCanvas"
388
                                        Background="White"
389
                                        Opacity="1">
273 390

  
274
                                        <Canvas x:Name="drawingRotateCanvas"
275
                                                        Panel.ZIndex="1"
276
                                                        Background="{Binding BackgroundImage, Mode=OneWay, Source={x:Static common:ViewerDataModel.Instance}}">
391
                                        <Canvas
392
                                            x:Name="drawingRotateCanvas"
393
                                            Panel.ZIndex="1"
394
                                            Background="{Binding BackgroundImage, Mode=OneWay, Source={x:Static common:ViewerDataModel.Instance}}">
277 395
                                            <Canvas.RenderTransform>
278 396
                                                <TransformGroup>
279
                                                    <RotateTransform x:Name="rotate" Angle="0"/>
280
                                                    <TranslateTransform x:Name="translate" X="0" Y="0"/>
397
                                                    <RotateTransform x:Name="rotate" Angle="0" />
398
                                                    <TranslateTransform x:Name="translate" X="0" Y="0" />
281 399
                                                </TransformGroup>
282 400
                                            </Canvas.RenderTransform>
283 401

  
284
                                            <ItemsControl ItemsSource="{Binding MarkupControls, Source={x:Static common:ViewerDataModel.Instance}}"
285
                                          Panel.ZIndex="1">
402
                                            <ItemsControl Panel.ZIndex="1" ItemsSource="{Binding MarkupControls, Source={x:Static common:ViewerDataModel.Instance}}">
286 403
                                                <ItemsControl.ItemsPanel>
287 404
                                                    <ItemsPanelTemplate>
288 405
                                                        <Canvas />
289 406
                                                    </ItemsPanelTemplate>
290 407
                                                </ItemsControl.ItemsPanel>
291 408
                                            </ItemsControl>
292
                                            <ItemsControl ItemsSource="{Binding MarkupControls_USER, Source={x:Static common:ViewerDataModel.Instance}}"
293
                                          Panel.ZIndex="30">
409
                                            <ItemsControl Panel.ZIndex="30" ItemsSource="{Binding MarkupControls_USER, Source={x:Static common:ViewerDataModel.Instance}}">
294 410
                                                <ItemsControl.ItemsPanel>
295 411
                                                    <ItemsPanelTemplate>
296 412
                                                        <Canvas />
297 413
                                                    </ItemsPanelTemplate>
298 414
                                                </ItemsControl.ItemsPanel>
299 415
                                            </ItemsControl>
300
                                            <InkPresenter x:Name="inkBoard" HorizontalAlignment="Stretch" Panel.ZIndex="1" VerticalAlignment="Stretch"/>
301
                                            <InkCanvas x:Name="inkDrawingCanvas"
302
                                               Background="Transparent"
303
                                               IsEnabled="False"
304
                                               Panel.ZIndex="1"
305
                                               Strokes="{Binding MarkupPens, Source={x:Static common:ViewerDataModel.Instance}}" Height="1" Width="1">
416
                                            <InkPresenter
417
                                                x:Name="inkBoard"
418
                                                HorizontalAlignment="Stretch"
419
                                                VerticalAlignment="Stretch"
420
                                                Panel.ZIndex="1" />
421
                                            <InkCanvas
422
                                                x:Name="inkDrawingCanvas"
423
                                                Width="1"
424
                                                Height="1"
425
                                                Panel.ZIndex="1"
426
                                                Background="Transparent"
427
                                                IsEnabled="False"
428
                                                Strokes="{Binding MarkupPens, Source={x:Static common:ViewerDataModel.Instance}}">
306 429
                                                <!--<Rectangle Height="41" HorizontalAlignment="Left"  Name="rectangle1" Stroke="Black" VerticalAlignment="Top" Width="69" Fill="#FFDB1111" />-->
307 430
                                                <!--<Ellipse Height="41" HorizontalAlignment="Left"  Name="rectangle1" Stroke="Black" VerticalAlignment="Top" Width="69" Fill="#FFDB1111" />-->
308 431

  
309 432
                                                <!--<MarkupToPDF:RectangleControl Height="200" HorizontalAlignment="Center" Name="rectangle2" StrokeColor="Black" VerticalAlignment="Top" Width="00" FillColor="Red"/>-->
310 433
                                            </InkCanvas>
311
                                            <!--강인구 추가-->
434
                                            <!--  강인구 추가  -->
312 435
                                            <!--<controls:ScaleDecodeImage Panel.ZIndex="0" x:Name="mainPanel"
313
                                                   Source="{Binding ImageViewPath,Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" 
436
                                                   Source="{Binding ImageViewPath,Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
314 437
                                                    Width="{Binding ImageViewWidth,Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
315 438
                                                        Height="{Binding ImageViewHeight,Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}">
316 439
                                                </controls:ScaleDecodeImage>-->
317
                                            <Image Panel.ZIndex="0" x:Name="mainPanel" RenderOptions.BitmapScalingMode="HighQuality"
318
                                                       RenderOptions.EdgeMode="Unspecified" RenderOptions.ClearTypeHint="Enabled"
319
                                                        Source="{Binding ImageViewPath,Mode=OneWay, Source={x:Static common:ViewerDataModel.Instance}}" 
320
                                                         Width="{Binding ImageViewWidth,Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
321
                                                        Height="{Binding ImageViewHeight,Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
322
                                                           >
323
                                            </Image>
324
                                            <Canvas x:Name="SelectLayer" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Panel.ZIndex="32766"/>
325
                                            <Border x:Name="dragSelectionBorder" Visibility="Collapsed"
326
                                                    BorderBrush="Blue"
327
                                                    BorderThickness="1"
328
                                                    Background="LightBlue" 
329
                                                    CornerRadius="1"
330
                                                    Panel.ZIndex="1"
331
                                                    Opacity="0.5"/>
332
                                            <Border x:Name="dragCaptureBorder" Visibility="Collapsed"
333
                                                    BorderBrush="Blue"
334
                                                    BorderThickness="1"
335
                                                    Background="Blue" 
336
                                                    CornerRadius="1"
337
                                                    Panel.ZIndex="1"
338
                                                    Opacity="0.5"/>
440
                                            <Image
441
                                                x:Name="mainPanel"
442
                                                Width="{Binding ImageViewWidth, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
443
                                                Height="{Binding ImageViewHeight, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
444
                                                Panel.ZIndex="0"
445
                                                RenderOptions.BitmapScalingMode="HighQuality"
446
                                                RenderOptions.ClearTypeHint="Enabled"
447
                                                RenderOptions.EdgeMode="Unspecified"
448
                                                Source="{Binding ImageViewPath, Mode=OneWay, Source={x:Static common:ViewerDataModel.Instance}}" />
449
                                            <Canvas
450
                                                x:Name="SelectLayer"
451
                                                HorizontalAlignment="Stretch"
452
                                                VerticalAlignment="Stretch"
453
                                                Panel.ZIndex="32766" />
454
                                            <Border
455
                                                x:Name="dragSelectionBorder"
456
                                                Panel.ZIndex="1"
457
                                                Background="LightBlue"
458
                                                BorderBrush="Blue"
459
                                                BorderThickness="1"
460
                                                CornerRadius="1"
461
                                                Opacity="0.5"
462
                                                Visibility="Collapsed" />
463
                                            <Border
464
                                                x:Name="dragCaptureBorder"
465
                                                Panel.ZIndex="1"
466
                                                Background="Blue"
467
                                                BorderBrush="Blue"
468
                                                BorderThickness="1"
469
                                                CornerRadius="1"
470
                                                Opacity="0.5"
471
                                                Visibility="Collapsed" />
339 472

  
340
                                            <Border x:Name="dragZoomBorder" Visibility="Collapsed"
341
                                                    BorderThickness="3"
342
                                                    Background="Transparent" 
343
                                                    CornerRadius="1"
344
                                                    Panel.ZIndex="1"
345
                                                    Opacity="1">
473
                                            <Border
474
                                                x:Name="dragZoomBorder"
475
                                                Panel.ZIndex="1"
476
                                                Background="Transparent"
477
                                                BorderThickness="3"
478
                                                CornerRadius="1"
479
                                                Opacity="1"
480
                                                Visibility="Collapsed">
346 481
                                                <Border.BorderBrush>
347 482
                                                    <VisualBrush>
348 483
                                                        <VisualBrush.Visual>
349
                                                            <Rectangle StrokeDashArray="4 2" Stroke="Gray" StrokeThickness="1"
350
                                                                  Width="{Binding RelativeSource={RelativeSource AncestorType={x:Type Border}}, Path=ActualWidth}"
351
                                                                  Height="{Binding RelativeSource={RelativeSource AncestorType={x:Type Border}}, Path=ActualHeight}"/>
484
                                                            <Rectangle
485
                                                                Width="{Binding RelativeSource={RelativeSource AncestorType={x:Type Border}}, Path=ActualWidth}"
486
                                                                Height="{Binding RelativeSource={RelativeSource AncestorType={x:Type Border}}, Path=ActualHeight}"
487
                                                                Stroke="Gray"
488
                                                                StrokeDashArray="4 2"
489
                                                                StrokeThickness="1" />
352 490
                                                        </VisualBrush.Visual>
353 491
                                                    </VisualBrush>
354 492
                                                </Border.BorderBrush>
......
356 494
                                            <!--<Border x:Name="dragZoomBorder"
357 495
                                                    BorderBrush="Black"
358 496
                                                    BorderThickness="1"
359
                                                    
360
                                                    Background="Transparent" 
497

  
498
                                                    Background="Transparent"
361 499
                                                    CornerRadius="1"
362 500
                                                    Panel.ZIndex="1"
363 501
                                                    Opacity="0.5"/>-->
364
                                            <Canvas x:Name="SearchFocusBorder" Visibility="Collapsed"
365
                                                    Background="#50FF5D00" 
366
                                                    Panel.ZIndex="99999" IsHitTestVisible="False">
367
                                                <Border Visibility="Collapsed"
502
                                            <Canvas
503
                                                x:Name="SearchFocusBorder"
504
                                                Panel.ZIndex="99999"
505
                                                Background="#50FF5D00"
506
                                                IsHitTestVisible="False"
507
                                                Visibility="Collapsed">
508
                                                <Border
509
                                                    Width="{Binding Width, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Canvas}}}"
510
                                                    Height="{Binding Height, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Canvas}}}"
511
                                                    Panel.ZIndex="99999"
512
                                                    Background="#50FF5D00"
368 513
                                                    BorderThickness="1"
369
                                                    Background="#50FF5D00" 
370 514
                                                    CornerRadius="1"
371
                                                    Panel.ZIndex="99999" IsHitTestVisible="False"
372
                                                             Width="{Binding Width, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Canvas}}}"
373
                                                            Height="{Binding Height, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Canvas}}}"></Border>
515
                                                    IsHitTestVisible="False"
516
                                                    Visibility="Collapsed" />
374 517
                                            </Canvas>
375 518
                                            <!--<Border Background="Red" Panel.ZIndex="1" Opacity="0.5" Visibility="Visible" Width="100" Height="100" />-->
376 519
                                        </Canvas>
......
380 523
                                        <!--<Leadtools_Windows_Controls:RasterImageViewer x:Name="_imageViewer" Grid.Row="1" BorderThickness="0"/>-->
381 524
                                    </Canvas>
382 525
                                </ZoomAndPan:ZoomAndPanControl>
383
                                <telerik:RadBusyIndicator x:Name="busyIndicator" IsBusy="False" BusyContent="Saving..." Visibility="{Binding IsBusy, Converter={StaticResource BoolToVisibleConverter}, RelativeSource={RelativeSource Self}}"/>
384
                                <!--캡쳐 화면을 위한 보더-->
385
                                <Border Background="LightGray" 
386
                                        Opacity="{Binding Capture_Opacity, Source={x:Static common:ViewerDataModel.Instance}}"
387
                                        IsHitTestVisible="False" >
388
                                    <TextBlock HorizontalAlignment="Right" Foreground="Red" Text="캡쳐 진행 화면" FontSize="30"/>
526
                                <telerik:RadBusyIndicator
527
                                    x:Name="busyIndicator"
528
                                    BusyContent="Saving..."
529
                                    IsBusy="False"
530
                                    Visibility="{Binding IsBusy, Converter={StaticResource BoolToVisibleConverter}, RelativeSource={RelativeSource Self}}" />
531
                                <!--  캡쳐 화면을 위한 보더  -->
532
                                <Border
533
                                    Background="LightGray"
534
                                    IsHitTestVisible="False"
535
                                    Opacity="{Binding Capture_Opacity, Source={x:Static common:ViewerDataModel.Instance}}">
536
                                    <TextBlock
537
                                        HorizontalAlignment="Right"
538
                                        FontSize="30"
539
                                        Foreground="Red"
540
                                        Text="캡쳐 진행 화면" />
389 541
                                </Border>
390
                                <Angle:AngleControl x:Name="MainAngle"
391
                                                        Grid.Column="1"
392
                                                        Grid.ColumnSpan="2"
393
                                                        Margin="10"
394
                                                        AngleValue="{Binding MarkupAngle, Mode=TwoWay, StringFormat=\{0:F0\}°, Source={x:Static common:ViewerDataModel.Instance}}"
395
                                                        HorizontalAlignment="Right"
396
                                                        VerticalAlignment="Top"
397
                                                        IsHitTestVisible="False"
398
                                                        Visibility="{Binding MarkupAngleVisibility, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" />
542
                                <Angle:AngleControl
543
                                    x:Name="MainAngle"
544
                                    Grid.Column="1"
545
                                    Grid.ColumnSpan="2"
546
                                    Margin="10"
547
                                    HorizontalAlignment="Right"
548
                                    VerticalAlignment="Top"
549
                                    AngleValue="{Binding MarkupAngle, Mode=TwoWay, StringFormat=\{0:F0\}°, Source={x:Static common:ViewerDataModel.Instance}}"
550
                                    IsHitTestVisible="False"
551
                                    Visibility="{Binding MarkupAngleVisibility, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" />
399 552
                            </Grid>
400 553
                        </telerik:RadDocumentPane>
401 554
                    </telerik:RadPaneGroup>
402 555
                    <telerik:RadPaneGroup Style="{DynamicResource Style_RadPanelGroup}">
403
                        <telerik:RadPane CanFloat="False" CanUserClose="False" Title="Document 1" PaneHeaderVisibility="Collapsed" x:Name="testPanel2" IsHidden="True" Margin="0,-20,0,0" >
556
                        <telerik:RadPane
557
                            x:Name="testPanel2"
558
                            Title="Document 1"
559
                            Margin="0,-20,0,0"
560
                            CanFloat="False"
561
                            CanUserClose="False"
562
                            IsHidden="True"
563
                            PaneHeaderVisibility="Collapsed">
404 564
                            <Grid Background="{DynamicResource KCOMColor_DocumnetBackgroundBrush}">
405
                                <ZoomAndPan:ZoomAndPanControl x:Name="zoomAndPanControl2" AllowDrop="True"
406
                                                              MouseWheel="zoomAndPanControl2_MouseWheel"
407
                                                              MouseMove="zoomAndPanControl2_MouseMove"
408
                                                              MouseDown="zoomAndPanControl2_MouseDown"
409
                                                              MouseUp="zoomAndPanControl2_MouseUp"
410
                                                              MouseLeave="zoomAndPanControl_MouseLeave"
411
                                                              ContentScale="{Binding Sync_ContentScale, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
412
                                                              ContentOffsetX="{Binding Sync_ContentOffsetX, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
413
                                                              ContentOffsetY="{Binding Sync_ContentOffsetY, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
414
                                                              ConstrainedContentViewportWidth="{Binding ContentViewportWidth, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
415
                                                              ConstrainedContentViewportHeight="{Binding ContentViewportHeight, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
416
                                                              Background="LightGray">
417
                                    <Canvas x:Name="zoomAndPanCanvas2" Opacity="1" Background="Transparent">
418
                                        <Canvas x:Name="drawingRotateCanvas2"
419
                                                        Panel.ZIndex="1"
420
                                                        Background="{Binding BackgroundImage, Mode=OneWay, Source={x:Static common:ViewerDataModel.Instance}}">
565
                                <ZoomAndPan:ZoomAndPanControl
566
                                    x:Name="zoomAndPanControl2"
567
                                    AllowDrop="True"
568
                                    Background="LightGray"
569
                                    ConstrainedContentViewportHeight="{Binding ContentViewportHeight, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
570
                                    ConstrainedContentViewportWidth="{Binding ContentViewportWidth, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
571
                                    ContentOffsetX="{Binding Sync_ContentOffsetX, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
572
                                    ContentOffsetY="{Binding Sync_ContentOffsetY, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
573
                                    ContentScale="{Binding Sync_ContentScale, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
574
                                    MouseDown="zoomAndPanControl2_MouseDown"
575
                                    MouseLeave="zoomAndPanControl_MouseLeave"
576
                                    MouseMove="zoomAndPanControl2_MouseMove"
577
                                    MouseUp="zoomAndPanControl2_MouseUp"
578
                                    MouseWheel="zoomAndPanControl2_MouseWheel">
579
                                    <Canvas
580
                                        x:Name="zoomAndPanCanvas2"
581
                                        Background="Transparent"
582
                                        Opacity="1">
583
                                        <Canvas
584
                                            x:Name="drawingRotateCanvas2"
585
                                            Panel.ZIndex="1"
586
                                            Background="{Binding BackgroundImage, Mode=OneWay, Source={x:Static common:ViewerDataModel.Instance}}">
421 587
                                            <Canvas.RenderTransform>
422 588
                                                <TransformGroup>
423
                                                    <RotateTransform x:Name="rotate2" Angle="0"/>
424
                                                    <TranslateTransform x:Name="translate2" X="0" Y="0"/>
589
                                                    <RotateTransform x:Name="rotate2" Angle="0" />
590
                                                    <TranslateTransform x:Name="translate2" X="0" Y="0" />
425 591
                                                </TransformGroup>
426 592
                                            </Canvas.RenderTransform>
427
                                            <ItemsControl x:Name="itemsControl" ItemsSource="{Binding MarkupControls_Sync, Source={x:Static common:ViewerDataModel.Instance}}"
428
                                          Panel.ZIndex="1">
593
                                            <ItemsControl
594
                                                x:Name="itemsControl"
595
                                                Panel.ZIndex="1"
596
                                                ItemsSource="{Binding MarkupControls_Sync, Source={x:Static common:ViewerDataModel.Instance}}">
429 597
                                                <ItemsControl.ItemsPanel>
430 598
                                                    <ItemsPanelTemplate>
431
                                                        <Canvas >
432

  
433
                                                        </Canvas>
599
                                                        <Canvas />
434 600
                                                    </ItemsPanelTemplate>
435 601
                                                </ItemsControl.ItemsPanel>
436 602
                                            </ItemsControl>
437
                                            <Image x:Name="ComparePanel"
438
                                                   Source="{Binding ImageViewPath_C, Source={x:Static common:ViewerDataModel.Instance}}" 
439
                                                   Width="{Binding ImageViewWidth_C, Source={x:Static common:ViewerDataModel.Instance}}" 
440
                                                   Height="{Binding ImageViewHeight_C, Source={x:Static common:ViewerDataModel.Instance}}" >
441
                                            </Image>
442
                                            <Canvas x:Name="canvas_compareBorder" IsHitTestVisible="False" 
443
                                                    Width="{Binding ActualWidth, ElementName=zoomAndPanCanvas2}"
444
                                                    Height="{Binding ActualHeight, ElementName=zoomAndPanCanvas2}" Panel.ZIndex="1">
445
                                                <!--RenderTransform="{Binding RenderTransform, ElementName=zoomAndPanControl2}"-->
603
                                            <Image
604
                                                x:Name="ComparePanel"
605
                                                Width="{Binding ImageViewWidth_C, Source={x:Static common:ViewerDataModel.Instance}}"
606
                                                Height="{Binding ImageViewHeight_C, Source={x:Static common:ViewerDataModel.Instance}}"
607
                                                Source="{Binding ImageViewPath_C, Source={x:Static common:ViewerDataModel.Instance}}" />
608
                                            <Canvas
609
                                                x:Name="canvas_compareBorder"
610
                                                Width="{Binding ActualWidth, ElementName=zoomAndPanCanvas2}"
611
                                                Height="{Binding ActualHeight, ElementName=zoomAndPanCanvas2}"
612
                                                Panel.ZIndex="1"
613
                                                IsHitTestVisible="False">
614
                                                <!--  RenderTransform="{Binding RenderTransform, ElementName=zoomAndPanControl2}"  -->
446 615
                                                <Canvas.RenderTransform>
447 616
                                                    <TransformGroup>
448
                                                        <RotateTransform x:Name="rotate2CompareBorder" Angle="0"/>
449
                                                        <TranslateTransform x:Name="translate2CompareBorder" X="0" Y="0"/>
617
                                                        <RotateTransform x:Name="rotate2CompareBorder" Angle="0" />
618
                                                        <TranslateTransform x:Name="translate2CompareBorder" X="0" Y="0" />
450 619
                                                    </TransformGroup>
451 620
                                                </Canvas.RenderTransform>
452 621
                                                <!--<Canvas.RenderTransform>
453 622
                                                    <RotateTransform Angle="{Binding RenderTransform, ElementName=zoomAndPanControl2}"/>
454 623
                                                </Canvas.RenderTransform>-->
455 624
                                            </Canvas>
456
                                            <!--강인구 추가-->
625
                                            <!--  강인구 추가  -->
457 626
                                        </Canvas>
458 627
                                    </Canvas>
459 628
                                </ZoomAndPan:ZoomAndPanControl>
460
                                <Grid Background="#FF353535" Opacity="0.1" IsHitTestVisible="False"/>
629
                                <Grid
630
                                    Background="#FF353535"
631
                                    IsHitTestVisible="False"
632
                                    Opacity="0.1" />
461 633

  
462 634
                                <!--<Viewbox VerticalAlignment="Stretch" HorizontalAlignment="Stretch" StretchDirection="DownOnly" Stretch="Uniform" IsHitTestVisible="False">
463 635
                                    <TextBlock Text="Previous Document" HorizontalAlignment="Center" VerticalAlignment="Center" RenderTransformOrigin="0.5, 0.5" FontSize="50"
......
470 642

  
471 643
                                <!--<telerik:RadExpander Header="OPEN" Background="Transparent" telerik:StyleManager.Theme="Office2016"
472 644
                                                     ExpandDirection="Right" VerticalAlignment="Top" HorizontalAlignment="Left">-->
473
                                <Grid Height="Auto" VerticalAlignment="Top" >
645
                                <Grid Height="Auto" VerticalAlignment="Top">
474 646
                                    <Grid.RowDefinitions>
475
                                        <RowDefinition/>
476
                                        <RowDefinition/>
647
                                        <RowDefinition />
648
                                        <RowDefinition />
477 649
                                    </Grid.RowDefinitions>
478 650
                                    <!--<Border Background="#3b3838" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Opacity="0.5" Grid.RowSpan="2"/>-->
479
                                    <Border Background="Black" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Opacity="0.5" Grid.RowSpan="2" BorderThickness="0"/>
480
                                    <StackPanel Orientation="Horizontal" HorizontalAlignment="Left">
651
                                    <Border
652
                                        Grid.RowSpan="2"
653
                                        HorizontalAlignment="Stretch"
654
                                        VerticalAlignment="Stretch"
655
                                        Background="Black"
656
                                        BorderThickness="0"
657
                                        Opacity="0.5" />
658
                                    <StackPanel HorizontalAlignment="Left" Orientation="Horizontal">
481 659
                                        <!--<TextBlock Text="ReadOnly Mode" Foreground="#FFFF9A25" VerticalAlignment="Center" Margin="10"/>-->
482
                                        <TextBlock Text="Rev.A" Foreground="#FFFF9A25" VerticalAlignment="Center" Margin="10" x:Name="tlSyncRev"/>
483
                                        <TextBlock Text="Current Page : 1" Foreground="White" VerticalAlignment="Center"  x:Name="tlSyncPageNum"/>
660
                                        <TextBlock
661
                                            x:Name="tlSyncRev"
662
                                            Margin="10"
663
                                            VerticalAlignment="Center"
664
                                            Foreground="#FFFF9A25"
665
                                            Text="Rev.A" />
666
                                        <TextBlock
667
                                            x:Name="tlSyncPageNum"
668
                                            VerticalAlignment="Center"
669
                                            Foreground="White"
670
                                            Text="Current Page : 1" />
484 671
                                    </StackPanel>
485
                                    <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
672
                                    <StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
486 673
                                        <!--<telerik:RadToggleButton x:Name="CompareMode" IsChecked="False" Content="Compare"  Margin="5" Checked="SyncCompare_Click" Unchecked="SyncCompare_Click" BorderThickness="0" telerik:StyleManager.Theme="Office2013"
487 674
                                                                       Style="{DynamicResource RadToggleSwtichButtonStyle}" Width="Auto" Padding="10,0"/>-->
488 675
                                        <!--<telerik:RadRibbonToggleButton x:Name="UserList" Content="User List" Foreground="white"  Margin="5" Click="SyncUserListExpender_Click" BorderThickness="0" telerik:StyleManager.Theme="Office2013" VerticalAlignment="Center"/>-->
489 676

  
490
                                        <toggle:HorizontalToggleSwitch x:Name="Sync" CheckedContent="Sync" UncheckedContent="Sync" Width="75" IsChecked="False" ThumbSize="25"
491
                                                                       FontSize="10" FontWeight="Normal" BorderBrush="Transparent" Opacity="0.6"
492
                                                                       Margin="5" Checked="Sync_Click" Unchecked="Sync_Click" BorderThickness="0" telerik:StyleManager.Theme="Office2013"/>
677
                                        <toggle:HorizontalToggleSwitch
678
                                            x:Name="Sync"
679
                                            Width="75"
680
                                            Margin="5"
681
                                            telerik:StyleManager.Theme="Office2013"
682
                                            BorderBrush="Transparent"
683
                                            BorderThickness="0"
684
                                            Checked="Sync_Click"
685
                                            CheckedContent="Sync"
686
                                            FontSize="10"
687
                                            FontWeight="Normal"
688
                                            IsChecked="False"
689
                                            Opacity="0.6"
690
                                            ThumbSize="25"
691
                                            Unchecked="Sync_Click"
692
                                            UncheckedContent="Sync" />
493 693

  
494
                                        <toggle:HorizontalToggleSwitch x:Name="UserList" CheckedContent="User List" UncheckedContent="User List" Width="75" IsChecked="False" ThumbSize="25"
495
                                                                       FontSize="10" FontWeight="Normal" BorderBrush="Transparent" Opacity="0.6"
496
                                                                       Margin="5" Checked="SyncUserListExpender_Click" Unchecked="SyncUserListExpender_Click" BorderThickness="0" telerik:StyleManager.Theme="Office2013"/>
694
                                        <toggle:HorizontalToggleSwitch
695
                                            x:Name="UserList"
696
                                            Width="75"
697
                                            Margin="5"
698
                                            telerik:StyleManager.Theme="Office2013"
699
                                            BorderBrush="Transparent"
700
                                            BorderThickness="0"
701
                                            Checked="SyncUserListExpender_Click"
702
                                            CheckedContent="User List"
703
                                            FontSize="10"
704
                                            FontWeight="Normal"
705
                                            IsChecked="False"
706
                                            Opacity="0.6"
707
                                            ThumbSize="25"
708
                                            Unchecked="SyncUserListExpender_Click"
709
                                            UncheckedContent="User List" />
497 710

  
498
                                        <toggle:HorizontalToggleSwitch x:Name="CompareMode" CheckedContent="Compare On" UncheckedContent="Compare Off" Width="90" IsChecked="False" ThumbSize="25"
499
                                                                       FontSize="10" FontWeight="Normal" BorderBrush="Transparent" Opacity="0.6"
500
                                                                       Margin="5" Checked="SyncCompare_Click" Unchecked="SyncCompare_Click" BorderThickness="0" telerik:StyleManager.Theme="Office2013"/>
711
                                        <toggle:HorizontalToggleSwitch
712
                                            x:Name="CompareMode"
713
                                            Width="90"
714
                                            Margin="5"
715
                                            telerik:StyleManager.Theme="Office2013"
716
                                            BorderBrush="Transparent"
717
                                            BorderThickness="0"
718
                                            Checked="SyncCompare_Click"
719
                                            CheckedContent="Compare On"
720
                                            FontSize="10"
721
                                            FontWeight="Normal"
722
                                            IsChecked="False"
723
                                            Opacity="0.6"
724
                                            ThumbSize="25"
725
                                            Unchecked="SyncCompare_Click"
726
                                            UncheckedContent="Compare Off" />
501 727

  
502
                                        <toggle:HorizontalToggleSwitch x:Name="MarkupMode" CheckedContent="Pdf" UncheckedContent="Markup" Width="75" IsChecked="False" ThumbSize="25"
503
                                                                       FontSize="10" FontWeight="Normal" BorderBrush="Transparent" Opacity="0.6" Visibility="Collapsed"
504
                                                                       Margin="5" Checked="SyncChange_Click" Unchecked="SyncChange_Click" BorderThickness="0" telerik:StyleManager.Theme="Office2013"/>
728
                                        <toggle:HorizontalToggleSwitch
729
                                            x:Name="MarkupMode"
730
                                            Width="75"
731
                                            Margin="5"
732
                                            telerik:StyleManager.Theme="Office2013"
733
                                            BorderBrush="Transparent"
734
                                            BorderThickness="0"
735
                                            Checked="SyncChange_Click"
736
                                            CheckedContent="Pdf"
737
                                            FontSize="10"
738
                                            FontWeight="Normal"
739
                                            IsChecked="False"
740
                                            Opacity="0.6"
741
                                            ThumbSize="25"
742
                                            Unchecked="SyncChange_Click"
743
                                            UncheckedContent="Markup"
744
                                            Visibility="Collapsed" />
505 745

  
506
                                        <toggle:HorizontalToggleSwitch x:Name="BalanceMode" CheckedContent="Balance On" UncheckedContent="Balance Off" Width="90" IsChecked="False" ThumbSize="25"
507
                                                                       FontSize="10" FontWeight="Normal" BorderBrush="Transparent" Opacity="0.6"
508
                                                                       Margin="5" Visibility="Collapsed" Checked="SyncPageBalance_Click" Unchecked="SyncPageBalance_Click" BorderThickness="0" telerik:StyleManager.Theme="Office2013"/>
509
                                        <toggle:HorizontalToggleSwitch x:Name="OriginalSizeMode" CheckedContent="Original Size" UncheckedContent="Uniform Size" Width="90" IsChecked="False" ThumbSize="25"
510
                                                                       FontSize="10" FontWeight="Normal" BorderBrush="Transparent" Opacity="0.6"
511
                                                                       Checked="OriginalSizeMode_Click" Unchecked="OriginalSizeMode_Click"
512
                                                                       Margin="5"  BorderThickness="0" telerik:StyleManager.Theme="Office2013"/>
746
                                        <toggle:HorizontalToggleSwitch
747
                                            x:Name="BalanceMode"
748
                                            Width="90"
749
                                            Margin="5"
750
                                            telerik:StyleManager.Theme="Office2013"
751
                                            BorderBrush="Transparent"
752
                                            BorderThickness="0"
753
                                            Checked="SyncPageBalance_Click"
754
                                            CheckedContent="Balance On"
755
                                            FontSize="10"
756
                                            FontWeight="Normal"
757
                                            IsChecked="False"
758
                                            Opacity="0.6"
759
                                            ThumbSize="25"
760
                                            Unchecked="SyncPageBalance_Click"
761
                                            UncheckedContent="Balance Off"
762
                                            Visibility="Collapsed" />
763
                                        <toggle:HorizontalToggleSwitch
764
                                            x:Name="OriginalSizeMode"
765
                                            Width="90"
766
                                            Margin="5"
767
                                            telerik:StyleManager.Theme="Office2013"
768
                                            BorderBrush="Transparent"
769
                                            BorderThickness="0"
770
                                            Checked="OriginalSizeMode_Click"
771
                                            CheckedContent="Original Size"
772
                                            FontSize="10"
773
                                            FontWeight="Normal"
774
                                            IsChecked="False"
775
                                            Opacity="0.6"
776
                                            ThumbSize="25"
777
                                            Unchecked="OriginalSizeMode_Click"
778
                                            UncheckedContent="Uniform Size" />
513 779

  
514 780
                                        <!--<telerik:RadRibbonToggleButton x:Name="MArkupMode" Content="Markup Mode" Foreground="White"  Margin="5"  Click="SyncChange_Click" BorderThickness="0" telerik:StyleManager.Theme="Office2013"/>-->
515 781
                                        <!--<telerik:RadRibbonToggleButton x:Name="BalanceMode" Content="Balance Mode" Foreground="White"  Margin="5" Click="SyncPageBalance_Click" BorderThickness="0" telerik:StyleManager.Theme="Office2013"/>-->
516
                                        <telerik:RadPathButton  Margin="5"  Height="10" Width="20" Style="{StaticResource IconPathButton}" Click="SyncPageChange_Click" PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphArrowChevronUp}}" Tag="-1" telerik:StyleManager.Theme="Office2013" VerticalAlignment="Center">
782
                                        <telerik:RadPathButton
783
                                            Width="20"
784
                                            Height="10"
785
                                            Margin="5"
786
                                            VerticalAlignment="Center"
787
                                            telerik:StyleManager.Theme="Office2013"
788
                                            Click="SyncPageChange_Click"
789
                                            PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphArrowChevronUp}}"
790
                                            Style="{StaticResource IconPathButton}"
791
                                            Tag="-1">
517 792
                                            <!--<Image Height="20"
518 793
                                                               Source="/KCOM;component/Resources/Images/MenuImage_New/up-arrow.png"
519 794
                                                               Stretch="Uniform" />-->
520 795
                                        </telerik:RadPathButton>
521
                                        <telerik:RadPathButton Margin="5" Height="10" Width="20" Style="{StaticResource IconPathButton}"  Click="SyncPageChange_Click" PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphArrowChevronDown}}" Tag="1" telerik:StyleManager.Theme="Office2013" VerticalAlignment="Center">
796
                                        <telerik:RadPathButton
797
                                            Width="20"
798
                                            Height="10"
799
                                            Margin="5"
800
                                            VerticalAlignment="Center"
801
                                            telerik:StyleManager.Theme="Office2013"
802
                                            Click="SyncPageChange_Click"
803
                                            PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphArrowChevronDown}}"
804
                                            Style="{StaticResource IconPathButton}"
805
                                            Tag="1">
522 806
                                            <!--<Image Height="20"
523 807
                                                               Source="/KCOM;component/Resources/Images/MenuImage_New/up-arrow.png" RenderTransformOrigin="0.5 0.5"
524 808
                                                               Stretch="Uniform">
......
527 811
                                                </Image.RenderTransform>
528 812
                                            </Image>-->
529 813
                                        </telerik:RadPathButton>
530
                                        <telerik:RadPathButton Margin="5" Height="10" Width="20" Style="{StaticResource IconPathButton}" Click="SyncRotation_Click" PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphReloadSmall}}" Tag="1" telerik:StyleManager.Theme="Office2013" VerticalAlignment="Center"/>
531
                                        <telerik:RadPathButton Margin="5" Height="10" Width="20" Style="{StaticResource IconPathButton}"  Click="SyncRotation_Click" PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphResetSmall}}" Tag="-1" telerik:StyleManager.Theme="Office2013" VerticalAlignment="Center"/>
532
                                        <telerik:RadPathButton  Margin="5" Height="10" Width="20" Style="{StaticResource IconPathButton}"   Click="SyncExit_Click" PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphClose}}" telerik:StyleManager.Theme="Office2013" VerticalAlignment="Center">
814
                                        <telerik:RadPathButton
815
                                            Width="20"
816
                                            Height="10"
817
                                            Margin="5"
818
                                            VerticalAlignment="Center"
819
                                            telerik:StyleManager.Theme="Office2013"
820
                                            Click="SyncRotation_Click"
821
                                            PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphReloadSmall}}"
822
                                            Style="{StaticResource IconPathButton}"
823
                                            Tag="1" />
824
                                        <telerik:RadPathButton
825
                                            Width="20"
826
                                            Height="10"
827
                                            Margin="5"
828
                                            VerticalAlignment="Center"
829
                                            telerik:StyleManager.Theme="Office2013"
830
                                            Click="SyncRotation_Click"
831
                                            PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphResetSmall}}"
832
                                            Style="{StaticResource IconPathButton}"
833
                                            Tag="-1" />
834
                                        <telerik:RadPathButton
835
                                            Width="20"
836
                                            Height="10"
837
                                            Margin="5"
838
                                            VerticalAlignment="Center"
839
                                            telerik:StyleManager.Theme="Office2013"
840
                                            Click="SyncExit_Click"
841
                                            PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphClose}}"
842
                                            Style="{StaticResource IconPathButton}">
533 843
                                            <!--<Image Height="20"
534 844
                                                               Source="/KCOM;component/Resources/Images/MenuImage_New/cancel.png"
535 845
                                                               Stretch="Uniform" />-->
536 846
                                        </telerik:RadPathButton>
537 847
                                    </StackPanel>
538
                                    <telerik:RadGridView telerik:StyleManager.Theme="Office2013" ShowGroupPanel="False" ShowGroupFooters="False" AutoExpandGroups="False"  x:Name="gridViewRevMarkup"
539
                                             AutoGenerateColumns="False" HorizontalContentAlignment="Center" SelectionChanged="gridViewRevMarkup_SelectionChanged" SelectionMode="Multiple" BorderThickness="0"
540
                                                      CanUserFreezeColumns ="False" Visibility="Collapsed"  GridLinesVisibility="None" 
541
                                             CanUserDeleteRows="True" CanUserInsertRows="False" IsFilteringAllowed="False" RowIndicatorVisibility="Collapsed" Grid.Row="1">
848
                                    <telerik:RadGridView
849
                                        x:Name="gridViewRevMarkup"
850
                                        Grid.Row="1"
851
                                        HorizontalContentAlignment="Center"
852
                                        telerik:StyleManager.Theme="Office2013"
853
                                        AutoExpandGroups="False"
854
                                        AutoGenerateColumns="False"
855
                                        BorderThickness="0"
856
                                        CanUserDeleteRows="True"
857
                                        CanUserFreezeColumns="False"
858
                                        CanUserInsertRows="False"
859
                                        GridLinesVisibility="None"
860
                                        IsFilteringAllowed="False"
861
                                        RowIndicatorVisibility="Collapsed"
862
                                        SelectionChanged="gridViewRevMarkup_SelectionChanged"
863
                                        SelectionMode="Multiple"
864
                                        ShowGroupFooters="False"
865
                                        ShowGroupPanel="False"
866
                                        Visibility="Collapsed">
542 867
                                        <telerik:RadGridView.HeaderRowStyle>
543 868
                                            <Style TargetType="telerik:GridViewHeaderRow">
544
                                                <Setter Property="BorderThickness" Value="0"/>
545
                                                <Setter Property="Background" Value="Red"/>
546
                                                <Setter Property="Foreground" Value="White"/>
547
                                                <Setter Property="HorizontalContentAlignment" Value="Center"/>
548
                                                <Setter Property="FontWeight" Value="Black"/>
549
                                                <Setter Property="telerik:StyleManager.Theme" Value="Office2013"/>
869
                                                <Setter Property="BorderThickness" Value="0" />
870
                                                <Setter Property="Background" Value="Red" />
871
                                                <Setter Property="Foreground" Value="White" />
872
                                                <Setter Property="HorizontalContentAlignment" Value="Center" />
873
                                                <Setter Property="FontWeight" Value="Black" />
874
                                                <Setter Property="telerik:StyleManager.Theme" Value="Office2013" />
550 875
                                            </Style>
551 876
                                        </telerik:RadGridView.HeaderRowStyle>
552 877
                                        <telerik:RadGridView.RowStyle>
553 878
                                            <Style TargetType="telerik:GridViewRow">
554
                                                <Setter Property="HorizontalContentAlignment" Value="Center"/>
879
                                                <Setter Property="HorizontalContentAlignment" Value="Center" />
555 880
                                                <Setter Property="Background" Value="{Binding Path=Consolidate, Converter={StaticResource ConsolidationBackgroudConverter}}" />
556
                                                <Setter Property="Foreground" Value="White"/>
881
                                                <Setter Property="Foreground" Value="White" />
557 882
                                            </Style>
558 883
                                        </telerik:RadGridView.RowStyle>
559 884
                                        <telerik:RadGridView.Columns>
560
                                            <telerik:GridViewSelectColumn Width="Auto"  HeaderCellStyle="{StaticResource GridViewHeaderStyle}">
885
                                            <telerik:GridViewSelectColumn Width="Auto" HeaderCellStyle="{StaticResource GridViewHeaderStyle}">
561 886
                                                <telerik:GridViewSelectColumn.Header>
562
                                                    <telerik:RadRibbonToggleButton  telerik:StyleManager.Theme="Office2016"
563
                                                                           Visibility="Collapsed" Width="Auto">
887
                                                    <telerik:RadRibbonToggleButton
888
                                                        Width="Auto"
889
                                                        telerik:StyleManager.Theme="Office2016"
890
                                                        Visibility="Collapsed">
564 891
                                                        <telerik:RadRibbonToggleButton.Content>
565
                                                            <Image HorizontalAlignment="Center"
566
                                                           VerticalAlignment="Center"
567
                                                           Source="/KCOM;component/Resources/Images/MenuImage/check.png" />
892
                                                            <Image
893
                                                                HorizontalAlignment="Center"
894
                                                                VerticalAlignment="Center"
895
                                                                Source="/KCOM;component/Resources/Images/MenuImage_New/check.png" />
568 896
                                                        </telerik:RadRibbonToggleButton.Content>
569 897
                                                    </telerik:RadRibbonToggleButton>
570 898
                                                </telerik:GridViewSelectColumn.Header>
571 899
                                            </telerik:GridViewSelectColumn>
572
                                            <telerik:GridViewDataColumn Width="Auto"  HeaderCellStyle="{StaticResource GridViewHeaderStyle}"
573
                                                                Header="Color" 
574
                                                                IsReadOnly="True">
900
                                            <telerik:GridViewDataColumn
901
                                                Width="Auto"
902
                                                Header="Color"
903
                                                HeaderCellStyle="{StaticResource GridViewHeaderStyle}"
904
                                                IsReadOnly="True">
575 905
                                                <telerik:GridViewDataColumn.CellTemplate>
576 906
                                                    <DataTemplate>
577 907
                                                        <Grid>
......
580 910
                                                                <TextBlock Foreground="#00000000" Text="Color" />
581 911
                                                            </Grid>
582 912
                                                            <Grid VerticalAlignment="Center" Visibility="{Binding AvoidConsolidate, Converter={StaticResource BoolToVisibleConverter}}">
583
                                                                <Image Height="15"
584
                                                               Source="/KCOM;component/Resources/Images/MenuImage/lock_2.png"
585
                                                               Stretch="Uniform" />
913
                                                                <Image
914
                                                                    Height="15"
915
                                                                    Source="/KCOM;component/Resources/Images/MenuImage_New/lock_2.png"
916
                                                                    Stretch="Uniform" />
586 917
                                                            </Grid>
587 918
                                                        </Grid>
588 919

  
589 920
                                                    </DataTemplate>
590 921
                                                </telerik:GridViewDataColumn.CellTemplate>
591 922
                                            </telerik:GridViewDataColumn>
592
                                            <telerik:GridViewDataColumn Header="DEPT"  IsReadOnly="True"  Width="Auto" HeaderCellStyle="{StaticResource GridViewHeaderStyle}">
923
                                            <telerik:GridViewDataColumn
924
                                                Width="Auto"
925
                                                Header="DEPT"
926
                                                HeaderCellStyle="{StaticResource GridViewHeaderStyle}"
927
                                                IsReadOnly="True">
593 928
                                                <telerik:GridViewDataColumn.CellTemplate>
594 929
                                                    <DataTemplate>
595
                                                        <TextBlock Text="{Binding Depatment}"  FontSize="12"/>
930
                                                        <TextBlock FontSize="12" Text="{Binding Depatment}" />
596 931
                                                    </DataTemplate>
597 932
                                                </telerik:GridViewDataColumn.CellTemplate>
598 933
                                            </telerik:GridViewDataColumn>
599
                                            <telerik:GridViewDataColumn Header="NAME"  IsReadOnly="True" Width="Auto"  HeaderCellStyle="{StaticResource GridViewHeaderStyle}">
934
                                            <telerik:GridViewDataColumn
935
                                                Width="Auto"
936
                                                Header="NAME"
937
                                                HeaderCellStyle="{StaticResource GridViewHeaderStyle}"
938
                                                IsReadOnly="True">
600 939
                                                <telerik:GridViewDataColumn.CellTemplate>
601 940
                                                    <DataTemplate>
602
                                                        <TextBlock Text="{Binding UserName, Mode=TwoWay}" FontSize="10"/>
941
                                                        <TextBlock FontSize="10" Text="{Binding UserName, Mode=TwoWay}" />
603 942
                                                    </DataTemplate>
604 943
                                                </telerik:GridViewDataColumn.CellTemplate>
605 944
                                            </telerik:GridViewDataColumn>
606
                                            <telerik:GridViewDataColumn Header="CONSOLIDATION"  IsReadOnly="True" Width="Auto"  HeaderCellStyle="{StaticResource GridViewHeaderStyle}">
945
                                            <telerik:GridViewDataColumn
946
                                                Width="Auto"
947
                                                Header="CONSOLIDATION"
948
                                                HeaderCellStyle="{StaticResource GridViewHeaderStyle}"
949
                                                IsReadOnly="True">
607 950
                                                <telerik:GridViewDataColumn.CellTemplate>
608 951
                                                    <DataTemplate>
609 952
                                                        <!--<TextBlock Text="{Binding Consolidate}"/>-->
......
614 957
                                                                <ColumnDefinition Width="Auto" />
615 958
                                                            </Grid.ColumnDefinitions>
616 959

  
617
                                                            <TextBlock Grid.Column="0"
618
                                                               Foreground="Red"
619
                                                               Text="{Binding AvoidConsolidate,
620
                                                                              Converter={StaticResource AvoidStringConverter}}" />
621
                                                            <TextBlock Grid.Column="1"
622
                                                               Foreground="Blue"
623
                                                               Text="{Binding PartConsolidate,
624
                                                                              Converter={StaticResource TeamConsoliStringConverter}}" />
960
                                                            <TextBlock
961
                                                                Grid.Column="0"
962
                                                                Foreground="Red"
963
                                                                Text="{Binding AvoidConsolidate, Converter={StaticResource AvoidStringConverter}}" />
964
                                                            <TextBlock
965
                                                                Grid.Column="1"
966
                                                                Foreground="Blue"
967
                                                                Text="{Binding PartConsolidate, Converter={StaticResource TeamConsoliStringConverter}}" />
625 968
                                                            <TextBlock Grid.Column="2" Text="{Binding Consolidate, Converter={StaticResource ConsoliStringConverter}}" />
626 969
                                                            <!--
627 970
                                                        <TextBlock HorizontalAlignment="Center" Grid.Column="2">
......
629 972
                                                        <Binding Converter="{StaticResource ConsoliStringConverter}"/>
630 973
                                                        </TextBlock.Text>
631 974
                                                        </TextBlock>
632
                                                    -->
975
                                                            -->
633 976
                                                        </Grid>
634 977
                                                    </DataTemplate>
635 978
                                                </telerik:GridViewDataColumn.CellTemplate>
636 979
                                            </telerik:GridViewDataColumn>
637 980

  
638
                                            <telerik:GridViewDataColumn Header="Comment Move"  IsReadOnly="True" Width="Auto"  HeaderCellStyle="{StaticResource GridViewHeaderStyle}">
981
                                            <telerik:GridViewDataColumn
982
                                                Width="Auto"
983
                                                Header="Comment Move"
984
                                                HeaderCellStyle="{StaticResource GridViewHeaderStyle}"
985
                                                IsReadOnly="True">
639 986
                                                <telerik:GridViewDataColumn.CellTemplate>
640 987
                                                    <DataTemplate>
641
                                                        <telerik:RadButton telerik:StyleManager.Theme="Office2016" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Content="COPY" PreviewMouseDown="Comment_Move" />
988
                                                        <telerik:RadButton
989
                                                            HorizontalAlignment="Stretch"
990
                                                            VerticalAlignment="Stretch"
991
                                                            telerik:StyleManager.Theme="Office2016"
992
                                                            Content="COPY"
993
                                                            PreviewMouseDown="Comment_Move" />
642 994
                                                        <!--<TextBlock Text="{Binding UserName, Mode=TwoWay}" FontSize="10"/>-->
643 995
                                                    </DataTemplate>
644 996
                                                </telerik:GridViewDataColumn.CellTemplate>
645 997
                                            </telerik:GridViewDataColumn>
646 998

  
647
                                            <telerik:GridViewDataColumn Header=""  IsReadOnly="True" Width="*"  HeaderCellStyle="{StaticResource GridViewHeaderStyle}">
648
                                            </telerik:GridViewDataColumn>
999
                                            <telerik:GridViewDataColumn
1000
                                                Width="*"
1001
                                                Header=""
1002
                                                HeaderCellStyle="{StaticResource GridViewHeaderStyle}"
1003
                                                IsReadOnly="True" />
649 1004
                                        </telerik:RadGridView.Columns>
650 1005
                                    </telerik:RadGridView>
651 1006
                                </Grid>
......
657 1012
                    </telerik:RadPaneGroup>
658 1013
                </telerik:RadSplitContainer>
659 1014
            </telerik:RadDocking.DocumentHost>
660
            <telerik:RadSplitContainer Orientation="Vertical" InitialPosition="DockedLeft" x:Name="thumbnailPanel" SizeChanged="thumbnailPanel_SizeChanged" Template="{DynamicResource RadSplitContainerControlTemplate}">
661
                <!-- Width="250" MinWidth="250" -->
1015
            <telerik:RadSplitContainer
1016
                x:Name="thumbnailPanel"
1017
                InitialPosition="DockedLeft"
1018
                Orientation="Vertical"
1019
                SizeChanged="thumbnailPanel_SizeChanged"
1020
                Template="{DynamicResource RadSplitContainerControlTemplate}">
1021
                <!--  Width="250" MinWidth="250"  -->
662 1022
                <!--<telerik:RadPaneGroup Margin="0" Style="{DynamicResource Style_RadPanelGroup}">-->
663
                <telerik:RadPaneGroup Margin="0" telerik:StyleManager.Theme="Office2016" x:Name="PN_Navi">
664
                    <telerik:RadPane Header="DOCUMENT" x:Name="radPanelPageNavi" CanFloat="False" telerik:RadDocking.FloatingSize="50,NaN" CanUserClose="False" CanUserPin="True"
665
                                     ContextMenuTemplate="{x:Null}" PaneHeaderVisibility="Visible" telerik:StyleManager.Theme="Office2016">
1023
                <telerik:RadPaneGroup
1024
                    x:Name="PN_Navi"
1025
                    Margin="0"
1026
                    telerik:StyleManager.Theme="Office2016">
1027
                    <telerik:RadPane
1028
                        x:Name="radPanelPageNavi"
1029
                        telerik:RadDocking.FloatingSize="50,NaN"
1030
                        telerik:StyleManager.Theme="Office2016"
1031
                        CanFloat="False"
1032
                        CanUserClose="False"
1033
                        CanUserPin="True"
1034
                        ContextMenuTemplate="{x:Null}"
1035
                        Header="DOCUMENT"
1036
                        PaneHeaderVisibility="Visible">
666 1037
                        <!--<telerik:RadPane.TitleTemplate>
667 1038
                            <DataTemplate>
668 1039
                                <Grid>
......
694 1065
                            </Grid.RowDefinitions>-->
695 1066
                            <!--<telerik:RadButton Content="Panorama" telerik:StyleManager.Theme="Office2016" FontSize="8"  Background="#FF0054B9" Foreground="White"
696 1067
                                       BorderThickness="0" CornerRadius="3" HorizontalAlignment="Right" Padding="5" Margin="5,10"/>-->
697
                            <controls:Sample x:Name="pageNavigator"/>
1068
                            <controls:Sample x:Name="pageNavigator" />
698 1069
                        </Grid>
699 1070

  
700 1071
                    </telerik:RadPane>
......
722 1093
                </telerik:RadPaneGroup>
723 1094
            </telerik:RadSplitContainer>
724 1095

  
725
            <telerik:RadSplitContainer Orientation="Vertical" InitialPosition="DockedRight" MaxWidth="300" Width="300">
726
                <telerik:RadPaneGroup  IsTabStop="False" telerik:StyleManager.Theme="Office2016">
727
                    <telerik:RadPane Header="SEARCH" Visibility="Visible" CanFloat="False" CanUserClose="False"  ContextMenuTemplate="{x:Null}" IsPinned="False" telerik:StyleManager.Theme="Office2016" x:Name="searchPane">
728
                        <controls:SearchPanel x:Name="searchPanel_Instance"/>
1096
            <telerik:RadSplitContainer
1097
                Width="300"
1098
                MaxWidth="300"
1099
                InitialPosition="DockedRight"
1100
                Orientation="Vertical">
1101
                <telerik:RadPaneGroup telerik:StyleManager.Theme="Office2016" IsTabStop="False">
1102
                    <telerik:RadPane
1103
                        x:Name="searchPane"
1104
                        telerik:StyleManager.Theme="Office2016"
1105
                        CanFloat="False"
1106
                        CanUserClose="False"
1107
                        ContextMenuTemplate="{x:Null}"
1108
                        Header="SEARCH"
1109
                        IsPinned="False"
1110
                        Visibility="Visible">
1111
                        <controls:SearchPanel x:Name="searchPanel_Instance" />
729 1112
                    </telerik:RadPane>
730 1113
                </telerik:RadPaneGroup>
731
                <telerik:RadPaneGroup  IsTabStop="False" telerik:StyleManager.Theme="Office2016">
732
                    <telerik:RadPane Header="M-TALK" CanFloat="False" CanUserClose="False" ContextMenuTemplate="{x:Null}" IsPinned="False" telerik:StyleManager.Theme="Office2016"  x:Name="talkPane">
733
                        <messanger:ConversationView/>
1114
                <telerik:RadPaneGroup telerik:StyleManager.Theme="Office2016" IsTabStop="False">
1115
                    <telerik:RadPane
1116
                        x:Name="talkPane"
1117
                        telerik:StyleManager.Theme="Office2016"
1118
                        CanFloat="False"
1119
                        CanUserClose="False"
1120
                        ContextMenuTemplate="{x:Null}"
1121
                        Header="M-TALK"
1122
                        IsPinned="False">
1123
                        <messanger:ConversationView />
734 1124
                    </telerik:RadPane>
735 1125
                </telerik:RadPaneGroup>
736
                <telerik:RadPaneGroup  IsTabStop="False" Visibility="Visible" telerik:StyleManager.Theme="Office2016">
737
                    <telerik:RadPane Header="SYMBOL" Visibility="Visible" CanFloat="False" CanUserClose="False"  ContextMenuTemplate="{x:Null}" IsPinned="False" telerik:StyleManager.Theme="Office2016"  x:Name="SymbolPane">
1126
                <telerik:RadPaneGroup
1127
                    telerik:StyleManager.Theme="Office2016"
1128
                    IsTabStop="False"
1129
                    Visibility="Visible">
1130
                    <telerik:RadPane
1131
                        x:Name="SymbolPane"
1132
                        telerik:StyleManager.Theme="Office2016"
1133
                        CanFloat="False"
1134
                        CanUserClose="False"
1135
                        ContextMenuTemplate="{x:Null}"
1136
                        Header="SYMBOL"
1137
                        IsPinned="False"
1138
                        Visibility="Visible">
738 1139
                        <!--<controls:Symbol />-->
739
                        <controls:Symbol x:Name="symbolPanel_Instance"/>
1140
                        <controls:Symbol x:Name="symbolPanel_Instance" />
740 1141
                        <!--<telerik:RadButton Click="Create_Symbol">Create</telerik:RadButton>-->
741 1142
                    </telerik:RadPane>
742 1143
                </telerik:RadPaneGroup>
743
                <telerik:RadPaneGroup  IsTabStop="False" telerik:StyleManager.Theme="Office2016"  telerik:ProportionalStackPanel.RelativeSize="60, 100">
744
                    <telerik:RadPane Header="FAVORITE" Visibility="Visible"  CanFloat="False" CanUserClose="False"  ContextMenuTemplate="{x:Null}" IsPinned="False" telerik:StyleManager.Theme="Office2016"  x:Name="FavoritePane">
745
                        <controls:FavoritePanel/>
1144
                <telerik:RadPaneGroup
1145
                    telerik:ProportionalStackPanel.RelativeSize="60, 100"
1146
                    telerik:StyleManager.Theme="Office2016"
1147
                    IsTabStop="False">
1148
                    <telerik:RadPane
1149
                        x:Name="FavoritePane"
1150
                        telerik:StyleManager.Theme="Office2016"
1151
                        CanFloat="False"
1152
                        CanUserClose="False"
1153
                        ContextMenuTemplate="{x:Null}"
1154
                        Header="FAVORITE"
1155
                        IsPinned="False"
1156
                        Visibility="Visible">
1157
                        <controls:FavoritePanel />
746 1158
                    </telerik:RadPane>
747 1159
                </telerik:RadPaneGroup>
748 1160
            </telerik:RadSplitContainer>
749
            <telerik:RadSplitContainer Orientation="Horizontal" InitialPosition="DockedBottom">
750
                <telerik:RadPaneGroup IsTabStop="False"  telerik:StyleManager.Theme="Office2016" telerik:ProportionalStackPanel.RelativeSize="140, 100" AllowDrop="False">
751
                    <telerik:RadPane Header="User information List"  CanFloat="False" CanUserClose="False"  ContextMenuTemplate="{x:Null}" telerik:StyleManager.Theme="Office2016"  x:Name="infoListPane">
1161
            <telerik:RadSplitContainer InitialPosition="DockedBottom" Orientation="Horizontal">
1162
                <telerik:RadPaneGroup
1163
                    telerik:ProportionalStackPanel.RelativeSize="140, 100"
1164
                    telerik:StyleManager.Theme="Office2016"
1165
                    AllowDrop="False"
1166
                    IsTabStop="False">
1167
                    <telerik:RadPane
1168
                        x:Name="infoListPane"
1169
                        telerik:StyleManager.Theme="Office2016"
1170
                        CanFloat="False"
1171
                        CanUserClose="False"
1172
                        ContextMenuTemplate="{x:Null}"
1173
                        Header="User information List">
752 1174
                        <telerik:RadPane.TitleTemplate>
753 1175
                            <DataTemplate>
754 1176
                                <Grid>
......
758 1180
                                    </Grid.ColumnDefinitions>
759 1181

  
760 1182
                                    <StackPanel Orientation="Horizontal">
761
                                        <TextBlock Margin="1"
762
                                                   VerticalAlignment="Center"
763
                                                   Text="{Binding}" />
764
                                        <telerik:RadRibbonButton x:Name="btnConsolidate"
765
                                                                 VerticalAlignment="Center"
766
                                                                 Click="btnConsolidate_Click"
767
                                                                 Loaded="btnConsolidate_Loaded"
768
                                                                 telerik:StyleManager.Theme="Office2016"
769
                                                                 ToolTipService.ToolTip="Consolidate">
770
                                            <Border Background="#E9F0F8"
771
                                                    BorderBrush="#839AB3"
772
                                                    BorderThickness="1">
1183
                                        <TextBlock
1184
                                            Margin="1"
1185
                                            VerticalAlignment="Center"
1186
                                            Text="{Binding}" />
1187
                                        <telerik:RadRibbonButton
1188
                                            x:Name="btnConsolidate"
1189
                                            VerticalAlignment="Center"
1190
                                            telerik:StyleManager.Theme="Office2016"
1191
                                            Click="btnConsolidate_Click"
1192
                                            Loaded="btnConsolidate_Loaded"
1193
                                            ToolTipService.ToolTip="Consolidate">
1194
                                            <Border
1195
                                                Background="#E9F0F8"
1196
                                                BorderBrush="#839AB3"
1197
                                                BorderThickness="1">
773 1198
                                                <StackPanel Margin="1" Orientation="Horizontal">
774 1199
                                                    <!--<Image Width="15" Source="/DeepView;component/Images/MenuImage/document-new.png" />-->
775
                                                    <TextBlock Margin="1"
776
                                                               VerticalAlignment="Center"
777
                                                               Foreground="Black"
778
                                                               Text="Consolidate" />
1200
                                                    <TextBlock
1201
                                                        Margin="1"
1202
                                                        VerticalAlignment="Center"
1203
                                                        Foreground="Black"
1204
                                                        Text="Consolidate" />
779 1205
                                                </StackPanel>
780 1206
                                            </Border>
781 1207
                                        </telerik:RadRibbonButton>
782
                                        <telerik:RadRibbonButton x:Name="btnTeamConsolidate"
783
                                                                 VerticalAlignment="Center"
784
                                                                 Click="btnTeamConsolidate_Click"
785
                                                                 Loaded="btnTeamConsolidate_Loaded"
786
                                                                 telerik:StyleManager.Theme="Office2016"
787
                                                                 ToolTipService.ToolTip="Consolidate">
788
                                            <Border Background="#E9F0F8"
789
                                                    BorderBrush="#839AB3"
790
                                                    BorderThickness="1">
1208
                                        <telerik:RadRibbonButton
1209
                                            x:Name="btnTeamConsolidate"
1210
                                            VerticalAlignment="Center"
1211
                                            telerik:StyleManager.Theme="Office2016"
1212
                                            Click="btnTeamConsolidate_Click"
1213
                                            Loaded="btnTeamConsolidate_Loaded"
1214
                                            ToolTipService.ToolTip="Consolidate">
1215
                                            <Border
1216
                                                Background="#E9F0F8"
1217
                                                BorderBrush="#839AB3"
1218
                                                BorderThickness="1">
791 1219
                                                <StackPanel Margin="1" Orientation="Horizontal">
792 1220
                                                    <!--<Image Width="15" Source="/DeepView;component/Images/MenuImage/document-team.png" />-->
793
                                                    <TextBlock Margin="1"
794
                                                               VerticalAlignment="Center"
795
                                                               Foreground="Black"
796
                                                               Text="Team Consolidate" />
1221
                                                    <TextBlock
1222
                                                        Margin="1"
1223
                                                        VerticalAlignment="Center"
1224
                                                        Foreground="Black"
1225
                                                        Text="Team Consolidate" />
797 1226
                                                </StackPanel>
798 1227
                                            </Border>
799 1228
                                        </telerik:RadRibbonButton>
800
                                        <telerik:RadRibbonButton x:Name="btnFinalPDF"
801
                                                                 VerticalAlignment="Center"
802
                                                                 Click="FinalPDFEvent"
803
                                                                 Loaded="btnFinalPDF_Loaded"
804
                                                                 telerik:StyleManager.Theme="Office2016"
805
                                                                 ToolTipService.ToolTip="FinalPDF">
806
                                            <Border Background="#E9F0F8"
807
                                                    BorderBrush="#839AB3"
808
                                                    BorderThickness="1">
1229
                                        <telerik:RadRibbonButton
1230
                                            x:Name="btnFinalPDF"
1231
                                            VerticalAlignment="Center"
1232
                                            telerik:StyleManager.Theme="Office2016"
1233
                                            Click="FinalPDFEvent"
1234
                                            Loaded="btnFinalPDF_Loaded"
1235
                                            ToolTipService.ToolTip="FinalPDF">
1236
                                            <Border
1237
                                                Background="#E9F0F8"
1238
                                                BorderBrush="#839AB3"
1239
                                                BorderThickness="1">
809 1240
                                                <StackPanel Margin="1" Orientation="Horizontal">
810 1241
                                                    <!--<Image Width="15" Source="/DeepView;component/Images/MenuImage/final_pdf2.png" />-->
811
                                                    <TextBlock Margin="1"
812
                                                               VerticalAlignment="Center"
813
                                                               Foreground="Black"
814
                                                               Text="Merged PDF" />
1242
                                                    <TextBlock
1243
                                                        Margin="1"
1244
                                                        VerticalAlignment="Center"
1245
                                                        Foreground="Black"
1246
                                                        Text="Merged PDF" />
815 1247
                                                </StackPanel>
816 1248
                                            </Border>
... 이 차이점은 표시할 수 있는 최대 줄수를 초과해서 이 차이점은 잘렸습니다.

내보내기 Unified diff

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