markus / KCOM / Views / MainMenu.xaml @ 0d97ab05
이력 | 보기 | 이력해설 | 다운로드 (115 KB)
1 | 6a19b48d | taeseongkim | <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 | 3abe8d4e | taeseongkim | d:DesignWidth="1200" |
18 | 6a19b48d | taeseongkim | IsTabStop="True" |
19 | mc:Ignorable="d"> |
||
20 | 787a4489 | KangIngu | <UserControl.Resources>
|
21 | 6a19b48d | taeseongkim | <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" /> |
||
26 | 787a4489 | KangIngu | <Setter Property="Background"> |
27 | <Setter.Value>
|
||
28 | 6a19b48d | taeseongkim | <SolidColorBrush Opacity="0.5" Color="Black" /> |
29 | 787a4489 | KangIngu | </Setter.Value>
|
30 | </Setter>
|
||
31 | <!--<Setter Property="Background" Value="Black"/>-->
|
||
32 | 6a19b48d | taeseongkim | <Setter Property="BorderBrush" Value="White" /> |
33 | <Setter Property="Foreground" Value="White" /> |
||
34 | <Setter Property="telerik:StyleManager.Theme" Value="Office2013" /> |
||
35 | 787a4489 | KangIngu | <!--<Setter Property="FontWeight" Value="Black"/>-->
|
36 | </Style>
|
||
37 | f87dfb18 | taeseongkim | <Style x:Key="GridViewAlign" TargetType="{x:Type telerikGrid:GridViewCell}"> |
38 | 787a4489 | KangIngu | <Setter Property="HorizontalContentAlignment" Value="Center" /> |
39 | <Setter Property="TextBlock.TextDecorations"> |
||
40 | <Setter.Value>
|
||
41 | <TextDecorationCollection>
|
||
42 | <TextDecoration Location="Underline" /> |
||
43 | <TextDecoration Location="Overline" /> |
||
44 | 6a19b48d | taeseongkim | <TextDecoration PenThicknessUnit="FontRecommended"> |
45 | 787a4489 | KangIngu | <TextDecoration.Pen>
|
46 | <Pen Thickness="1.0"> |
||
47 | <Pen.Brush>
|
||
48 | 6a19b48d | taeseongkim | <LinearGradientBrush Opacity="0.5" StartPoint="0,0.5" EndPoint="1,0.5"> |
49 | <GradientStop Offset="0" Color="Yellow" /> |
||
50 | <GradientStop Offset="1" Color="Red" /> |
||
51 | 787a4489 | KangIngu | </LinearGradientBrush>
|
52 | </Pen.Brush>
|
||
53 | </Pen>
|
||
54 | </TextDecoration.Pen>
|
||
55 | </TextDecoration>
|
||
56 | </TextDecorationCollection>
|
||
57 | </Setter.Value>
|
||
58 | </Setter>
|
||
59 | </Style>
|
||
60 | 6a19b48d | taeseongkim | <converter:PDFVisibleConverter x:Key="PDFVisibleConverter" /> |
61 | 38d69491 | taeseongkim | <converter:NullToCollapsedConverter x:Key="NullToCollapsedConverter" /> |
62 | 787a4489 | KangIngu | <converter:ConsolidationBackgroudConverter x:Key="ConsolidationBackgroudConverter" /> |
63 | 3abe8d4e | taeseongkim | <converter:StringToColorBrushConverter x:Key="StringToColorBrushConverter" /> |
64 | 6a19b48d | taeseongkim | <converter:StringToColorConverter x:Key="StringToColorConverter" /> |
65 | 787a4489 | KangIngu | <converter:AvoidStringConverter x:Key="AvoidStringConverter" /> |
66 | <converter:TeamConsolidateStringConverter x:Key="TeamConsoliStringConverter" /> |
||
67 | <converter:ConsolidationStringConverter x:Key="ConsoliStringConverter" /> |
||
68 | <converter:BoolToVisibleConverter x:Key="BoolToVisibleConverter" /> |
||
69 | 6a19b48d | taeseongkim | <converter:PreviewerVisibleConverter x:Key="previewerVisibleConverter" /> |
70 | c8dd192f | taeseongkim | <ControlTemplate x:Key="RadSplitContainerControlTemplate" TargetType="{x:Type telerik:RadSplitContainer}"> |
71 | <Grid>
|
||
72 | 6a19b48d | taeseongkim | <Border
|
73 | x:Name="border" |
||
74 | Padding="{TemplateBinding Padding}" |
||
75 | Background="{TemplateBinding Background}" |
||
76 | BorderBrush="{TemplateBinding BorderBrush}" |
||
77 | BorderThickness="{TemplateBinding BorderThickness}"> |
||
78 | <ItemsPresenter /> |
||
79 | </Border>
|
||
80 | <telerik:RadGridResizer
|
||
81 | x:Name="DockResizer" |
||
82 | HorizontalAlignment="Left" |
||
83 | VerticalAlignment="Stretch" |
||
84 | Cursor="SizeWE" |
||
85 | Focusable="False" |
||
86 | Placement="Left" |
||
87 | ShowsPreview="True" |
||
88 | Visibility="Collapsed" /> |
||
89 | c8dd192f | taeseongkim | <VisualStateManager.VisualStateGroups>
|
90 | <VisualStateGroup x:Name="ResizerStates"> |
||
91 | <VisualState x:Name="ResizerLeft"> |
||
92 | <Storyboard>
|
||
93 | 6a19b48d | taeseongkim | <ObjectAnimationUsingKeyFrames
|
94 | Storyboard.TargetName="DockResizer" |
||
95 | Storyboard.TargetProperty="Visibility" |
||
96 | Duration="0"> |
||
97 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
98 | <DiscreteObjectKeyFrame.Value>
|
||
99 | <Visibility>Visible</Visibility> |
||
100 | </DiscreteObjectKeyFrame.Value>
|
||
101 | </DiscreteObjectKeyFrame>
|
||
102 | </ObjectAnimationUsingKeyFrames>
|
||
103 | 6a19b48d | taeseongkim | <DoubleAnimation
|
104 | BeginTime="0" |
||
105 | Storyboard.TargetName="DockResizer" |
||
106 | Storyboard.TargetProperty="MinWidth" |
||
107 | From="4" |
||
108 | To="4" /> |
||
109 | <ObjectAnimationUsingKeyFrames
|
||
110 | Storyboard.TargetName="border" |
||
111 | Storyboard.TargetProperty="Margin" |
||
112 | Duration="0"> |
||
113 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
114 | <DiscreteObjectKeyFrame.Value>
|
||
115 | <Thickness>4,0,0,0</Thickness> |
||
116 | </DiscreteObjectKeyFrame.Value>
|
||
117 | </DiscreteObjectKeyFrame>
|
||
118 | </ObjectAnimationUsingKeyFrames>
|
||
119 | </Storyboard>
|
||
120 | </VisualState>
|
||
121 | <VisualState x:Name="ResizerTop"> |
||
122 | <Storyboard>
|
||
123 | 6a19b48d | taeseongkim | <ObjectAnimationUsingKeyFrames
|
124 | Storyboard.TargetName="DockResizer" |
||
125 | Storyboard.TargetProperty="Visibility" |
||
126 | Duration="0"> |
||
127 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
128 | <DiscreteObjectKeyFrame.Value>
|
||
129 | <Visibility>Visible</Visibility> |
||
130 | </DiscreteObjectKeyFrame.Value>
|
||
131 | </DiscreteObjectKeyFrame>
|
||
132 | </ObjectAnimationUsingKeyFrames>
|
||
133 | 6a19b48d | taeseongkim | <ObjectAnimationUsingKeyFrames
|
134 | Storyboard.TargetName="DockResizer" |
||
135 | Storyboard.TargetProperty="VerticalAlignment" |
||
136 | Duration="0"> |
||
137 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
138 | <DiscreteObjectKeyFrame.Value>
|
||
139 | <VerticalAlignment>Top</VerticalAlignment> |
||
140 | </DiscreteObjectKeyFrame.Value>
|
||
141 | </DiscreteObjectKeyFrame>
|
||
142 | </ObjectAnimationUsingKeyFrames>
|
||
143 | 6a19b48d | taeseongkim | <ObjectAnimationUsingKeyFrames
|
144 | Storyboard.TargetName="DockResizer" |
||
145 | Storyboard.TargetProperty="HorizontalAlignment" |
||
146 | Duration="0"> |
||
147 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
148 | <DiscreteObjectKeyFrame.Value>
|
||
149 | <HorizontalAlignment>Stretch</HorizontalAlignment> |
||
150 | </DiscreteObjectKeyFrame.Value>
|
||
151 | </DiscreteObjectKeyFrame>
|
||
152 | </ObjectAnimationUsingKeyFrames>
|
||
153 | 6a19b48d | taeseongkim | <ObjectAnimationUsingKeyFrames
|
154 | Storyboard.TargetName="DockResizer" |
||
155 | Storyboard.TargetProperty="Placement" |
||
156 | Duration="0"> |
||
157 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
158 | <DiscreteObjectKeyFrame.Value>
|
||
159 | <Dock>Top</Dock> |
||
160 | </DiscreteObjectKeyFrame.Value>
|
||
161 | </DiscreteObjectKeyFrame>
|
||
162 | </ObjectAnimationUsingKeyFrames>
|
||
163 | 6a19b48d | taeseongkim | <DoubleAnimation
|
164 | BeginTime="0" |
||
165 | Storyboard.TargetName="DockResizer" |
||
166 | Storyboard.TargetProperty="MinHeight" |
||
167 | From="4" |
||
168 | To="4" /> |
||
169 | <ObjectAnimationUsingKeyFrames
|
||
170 | Storyboard.TargetName="border" |
||
171 | Storyboard.TargetProperty="Margin" |
||
172 | Duration="0"> |
||
173 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
174 | <DiscreteObjectKeyFrame.Value>
|
||
175 | <Thickness>0,4,0,0</Thickness> |
||
176 | </DiscreteObjectKeyFrame.Value>
|
||
177 | </DiscreteObjectKeyFrame>
|
||
178 | </ObjectAnimationUsingKeyFrames>
|
||
179 | </Storyboard>
|
||
180 | </VisualState>
|
||
181 | <VisualState x:Name="ResizerRight"> |
||
182 | <Storyboard>
|
||
183 | 6a19b48d | taeseongkim | <ObjectAnimationUsingKeyFrames
|
184 | Storyboard.TargetName="DockResizer" |
||
185 | Storyboard.TargetProperty="Visibility" |
||
186 | Duration="0"> |
||
187 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
188 | <DiscreteObjectKeyFrame.Value>
|
||
189 | <Visibility>Visible</Visibility> |
||
190 | </DiscreteObjectKeyFrame.Value>
|
||
191 | </DiscreteObjectKeyFrame>
|
||
192 | </ObjectAnimationUsingKeyFrames>
|
||
193 | 6a19b48d | taeseongkim | <DoubleAnimation
|
194 | BeginTime="0" |
||
195 | Storyboard.TargetName="DockResizer" |
||
196 | Storyboard.TargetProperty="MinWidth" |
||
197 | From="4" |
||
198 | To="4" /> |
||
199 | <ObjectAnimationUsingKeyFrames
|
||
200 | Storyboard.TargetName="border" |
||
201 | Storyboard.TargetProperty="Margin" |
||
202 | Duration="0"> |
||
203 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
204 | <DiscreteObjectKeyFrame.Value>
|
||
205 | <Thickness>0,0,4,0</Thickness> |
||
206 | </DiscreteObjectKeyFrame.Value>
|
||
207 | </DiscreteObjectKeyFrame>
|
||
208 | </ObjectAnimationUsingKeyFrames>
|
||
209 | 6a19b48d | taeseongkim | <ObjectAnimationUsingKeyFrames
|
210 | Storyboard.TargetName="DockResizer" |
||
211 | Storyboard.TargetProperty="HorizontalAlignment" |
||
212 | Duration="0"> |
||
213 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
214 | <DiscreteObjectKeyFrame.Value>
|
||
215 | <HorizontalAlignment>Right</HorizontalAlignment> |
||
216 | </DiscreteObjectKeyFrame.Value>
|
||
217 | </DiscreteObjectKeyFrame>
|
||
218 | </ObjectAnimationUsingKeyFrames>
|
||
219 | 6a19b48d | taeseongkim | <ObjectAnimationUsingKeyFrames
|
220 | Storyboard.TargetName="DockResizer" |
||
221 | Storyboard.TargetProperty="Placement" |
||
222 | Duration="0"> |
||
223 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
224 | <DiscreteObjectKeyFrame.Value>
|
||
225 | <Dock>Right</Dock> |
||
226 | </DiscreteObjectKeyFrame.Value>
|
||
227 | </DiscreteObjectKeyFrame>
|
||
228 | </ObjectAnimationUsingKeyFrames>
|
||
229 | </Storyboard>
|
||
230 | </VisualState>
|
||
231 | <VisualState x:Name="ResizerBottom"> |
||
232 | <Storyboard>
|
||
233 | 6a19b48d | taeseongkim | <ObjectAnimationUsingKeyFrames
|
234 | Storyboard.TargetName="DockResizer" |
||
235 | Storyboard.TargetProperty="Visibility" |
||
236 | Duration="0"> |
||
237 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
238 | <DiscreteObjectKeyFrame.Value>
|
||
239 | <Visibility>Visible</Visibility> |
||
240 | </DiscreteObjectKeyFrame.Value>
|
||
241 | </DiscreteObjectKeyFrame>
|
||
242 | </ObjectAnimationUsingKeyFrames>
|
||
243 | 6a19b48d | taeseongkim | <ObjectAnimationUsingKeyFrames
|
244 | Storyboard.TargetName="DockResizer" |
||
245 | Storyboard.TargetProperty="VerticalAlignment" |
||
246 | Duration="0"> |
||
247 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
248 | <DiscreteObjectKeyFrame.Value>
|
||
249 | <VerticalAlignment>Bottom</VerticalAlignment> |
||
250 | </DiscreteObjectKeyFrame.Value>
|
||
251 | </DiscreteObjectKeyFrame>
|
||
252 | </ObjectAnimationUsingKeyFrames>
|
||
253 | 6a19b48d | taeseongkim | <ObjectAnimationUsingKeyFrames
|
254 | Storyboard.TargetName="DockResizer" |
||
255 | Storyboard.TargetProperty="HorizontalAlignment" |
||
256 | Duration="0"> |
||
257 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
258 | <DiscreteObjectKeyFrame.Value>
|
||
259 | <HorizontalAlignment>Stretch</HorizontalAlignment> |
||
260 | </DiscreteObjectKeyFrame.Value>
|
||
261 | </DiscreteObjectKeyFrame>
|
||
262 | </ObjectAnimationUsingKeyFrames>
|
||
263 | 6a19b48d | taeseongkim | <ObjectAnimationUsingKeyFrames
|
264 | Storyboard.TargetName="DockResizer" |
||
265 | Storyboard.TargetProperty="Placement" |
||
266 | Duration="0"> |
||
267 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
268 | <DiscreteObjectKeyFrame.Value>
|
||
269 | <Dock>Bottom</Dock> |
||
270 | </DiscreteObjectKeyFrame.Value>
|
||
271 | </DiscreteObjectKeyFrame>
|
||
272 | </ObjectAnimationUsingKeyFrames>
|
||
273 | 6a19b48d | taeseongkim | <DoubleAnimation
|
274 | BeginTime="0" |
||
275 | Storyboard.TargetName="DockResizer" |
||
276 | Storyboard.TargetProperty="MinHeight" |
||
277 | From="4" |
||
278 | To="4" /> |
||
279 | <ObjectAnimationUsingKeyFrames
|
||
280 | Storyboard.TargetName="border" |
||
281 | Storyboard.TargetProperty="Margin" |
||
282 | Duration="0"> |
||
283 | c8dd192f | taeseongkim | <DiscreteObjectKeyFrame KeyTime="0"> |
284 | <DiscreteObjectKeyFrame.Value>
|
||
285 | <Thickness>0,0,0,4</Thickness> |
||
286 | </DiscreteObjectKeyFrame.Value>
|
||
287 | </DiscreteObjectKeyFrame>
|
||
288 | </ObjectAnimationUsingKeyFrames>
|
||
289 | </Storyboard>
|
||
290 | </VisualState>
|
||
291 | 6a19b48d | taeseongkim | <VisualState x:Name="HideResizer" /> |
292 | c8dd192f | taeseongkim | </VisualStateGroup>
|
293 | </VisualStateManager.VisualStateGroups>
|
||
294 | </Grid>
|
||
295 | </ControlTemplate>
|
||
296 | 3abe8d4e | taeseongkim | <!-- App.xaml에 선언됨 -->
|
297 | <!--<Style BasedOn="{StaticResource PaneHeaderStyle}" TargetType="telerik:PaneHeader">-->
|
||
298 | <!--<Style TargetType="telerik:PaneHeader">
|
||
299 | <Setter Property="HorizontalContentAlignment" Value="Stretch" />
|
||
300 | <Setter Property="HorizontalAlignment" Value="Stretch" />
|
||
301 | </Style>-->
|
||
302 | 787a4489 | KangIngu | </UserControl.Resources>
|
303 | 90e7968d | ljiyeon | <Grid Background="{DynamicResource KCOMColor_MainBrush}"> |
304 | 787a4489 | KangIngu | <!--<Grid.ColumnDefinitions>
|
305 | <ColumnDefinition Width="Auto"/>
|
||
306 | <ColumnDefinition Width="*"/>
|
||
307 | </Grid.ColumnDefinitions>-->
|
||
308 | <!--<Border Background="#fff5f5f5" BorderBrush="#d5d5d5" BorderThickness="0">
|
||
309 | 6a19b48d | taeseongkim | -->
|
310 | 787a4489 | KangIngu | <!--<controls:PageNavigator x:Name="pageNavigator" Grid.Row="1" Width="200"/>-->
|
311 | <!--
|
||
312 | <telerik:RadLayoutControl SelectedItem="{x:Null}" VirtualizingStackPanel.VirtualizationMode="Recycling" ScrollViewer.VerticalScrollBarVisibility="Hi">
|
||
313 | <telerik:LayoutControlTabGroup Template="{DynamicResource TabControlTemplate}" telerik:StyleManager.Theme="Office2016">
|
||
314 | <telerik:LayoutControlTabGroupItem Header="Thumbnail">
|
||
315 | 6a19b48d | taeseongkim | <telerik:LayoutControlGroup BorderBrush="Transparent" Padding="5" Margin="0,-3">
|
316 | <controls:PageNavigator x:Name="pageNavigator" Grid.Row="1" Width="300"/>
|
||
317 | 787a4489 | KangIngu | </telerik:LayoutControlGroup>
|
318 | </telerik:LayoutControlTabGroupItem>
|
||
319 | <telerik:LayoutControlTabGroupItem Header="Bookmark">
|
||
320 | <telerik:LayoutControlGroup BorderBrush="Transparent">
|
||
321 | <Border Background="Blue"/>
|
||
322 | </telerik:LayoutControlGroup>
|
||
323 | </telerik:LayoutControlTabGroupItem>
|
||
324 | </telerik:LayoutControlTabGroup>
|
||
325 | </telerik:RadLayoutControl>
|
||
326 | </Border>-->
|
||
327 | <!--<Grid.ColumnDefinitions>
|
||
328 | <ColumnDefinition Width="Auto"/>
|
||
329 | <ColumnDefinition Width="*"/>
|
||
330 | <ColumnDefinition Width="Auto"/>
|
||
331 | </Grid.ColumnDefinitions>-->
|
||
332 | <!--<Border Background="{DynamicResource Office2016Color_PrimaryBrush}">
|
||
333 | <Border Background="White" Margin="50"/>
|
||
334 | </Border>-->
|
||
335 | 6a19b48d | taeseongkim | <telerik:RadDocking
|
336 | Grid.Column="1" |
||
337 | Padding="0" |
||
338 | Background="{DynamicResource KCOMColor_MainBrush}" |
||
339 | BorderThickness="0"> |
||
340 | 787a4489 | KangIngu | <telerik:RadDocking.DocumentHost>
|
341 | 6a19b48d | taeseongkim | <telerik:RadSplitContainer
|
342 | x:Name="splitContainerMain" |
||
343 | Margin="0,-1,0,0" |
||
344 | Background="Transparent" |
||
345 | Template="{DynamicResource RadSplitContainerControlTemplate}"> |
||
346 | 787a4489 | KangIngu | <telerik:RadPaneGroup Style="{DynamicResource Style_RadPanelGroup}"> |
347 | 6a19b48d | taeseongkim | <telerik:RadDocumentPane
|
348 | x:Name="MainDocumentPanel" |
||
349 | Title="Document 1" |
||
350 | Margin="0,-20,0,0" |
||
351 | CanFloat="False" |
||
352 | CanUserClose="False" |
||
353 | Header="VP-320A-728063" |
||
354 | PaneHeaderVisibility="Collapsed"> |
||
355 | 787a4489 | KangIngu | <telerik:RadDocumentPane.HeaderTemplate>
|
356 | <DataTemplate>
|
||
357 | 6a19b48d | taeseongkim | <Border Margin="0,0,0,0" /> |
358 | 787a4489 | KangIngu | </DataTemplate>
|
359 | </telerik:RadDocumentPane.HeaderTemplate>
|
||
360 | <!--<Grid Background="{DynamicResource KCOMColor_AlternativeBrush}">-->
|
||
361 | <Grid Background="{DynamicResource KCOMColor_DocumnetBackgroundBrush}"> |
||
362 | 6a19b48d | taeseongkim | <Rectangle
|
363 | Name="rect" |
||
364 | Width="100" |
||
365 | Height="100" |
||
366 | Margin="50,50,0,0" |
||
367 | Fill="LightBlue" /> |
||
368 | <Popup
|
||
369 | Name="floatingTip" |
||
370 | AllowsTransparency="True" |
||
371 | Placement="Relative" |
||
372 | PlacementTarget="{Binding ElementName=rect}"> |
||
373 | <TextBlock
|
||
374 | x:Name="txtBatch" |
||
375 | FontSize="20" |
||
376 | Foreground="Red" |
||
377 | Text="Mark Control을 그립니다." /> |
||
378 | 787a4489 | KangIngu | </Popup>
|
379 | 6a19b48d | taeseongkim | <ZoomAndPan:ZoomAndPanControl
|
380 | x:Name="zoomAndPanControl" |
||
381 | Background="LightGray" |
||
382 | ConstrainedContentViewportHeight="{Binding ContentViewportHeight, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" |
||
383 | ConstrainedContentViewportWidth="{Binding ContentViewportWidth, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" |
||
384 | ContentOffsetX="{Binding ContentOffsetX, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" |
||
385 | ContentOffsetY="{Binding ContentOffsetY, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" |
||
386 | ContentScale="{Binding ContentScale, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" |
||
387 | MouseDoubleClick="zoomAndPanControl_MouseDoubleClick" |
||
388 | MouseDown="zoomAndPanControl_MouseDown" |
||
389 | MouseLeave="zoomAndPanControl_MouseLeave" |
||
390 | MouseMove="zoomAndPanControl_MouseMove" |
||
391 | MouseUp="zoomAndPanControl_MouseUp" |
||
392 | MouseWheel="zoomAndPanControl_MouseWheel" |
||
393 | ScaleChanged="ZoomAndPanControl_ScaleChanged"> |
||
394 | <Canvas
|
||
395 | x:Name="zoomAndPanCanvas" |
||
396 | Background="White" |
||
397 | Opacity="1"> |
||
398 | <Canvas
|
||
399 | x:Name="drawingRotateCanvas" |
||
400 | Panel.ZIndex="1" |
||
401 | Background="{Binding BackgroundImage, Mode=OneWay, Source={x:Static common:ViewerDataModel.Instance}}"> |
||
402 | 787a4489 | KangIngu | <Canvas.RenderTransform>
|
403 | <TransformGroup>
|
||
404 | 6a19b48d | taeseongkim | <RotateTransform x:Name="rotate" Angle="0" /> |
405 | <TranslateTransform x:Name="translate" X="0" Y="0" /> |
||
406 | 787a4489 | KangIngu | </TransformGroup>
|
407 | </Canvas.RenderTransform>
|
||
408 | f65e6c02 | taeseongkim | |
409 | 6a19b48d | taeseongkim | <ItemsControl Panel.ZIndex="1" ItemsSource="{Binding MarkupControls, Source={x:Static common:ViewerDataModel.Instance}}"> |
410 | 787a4489 | KangIngu | <ItemsControl.ItemsPanel>
|
411 | <ItemsPanelTemplate>
|
||
412 | <Canvas /> |
||
413 | </ItemsPanelTemplate>
|
||
414 | </ItemsControl.ItemsPanel>
|
||
415 | </ItemsControl>
|
||
416 | 6a19b48d | taeseongkim | <ItemsControl Panel.ZIndex="30" ItemsSource="{Binding MarkupControls_USER, Source={x:Static common:ViewerDataModel.Instance}}"> |
417 | 787a4489 | KangIngu | <ItemsControl.ItemsPanel>
|
418 | <ItemsPanelTemplate>
|
||
419 | <Canvas /> |
||
420 | </ItemsPanelTemplate>
|
||
421 | </ItemsControl.ItemsPanel>
|
||
422 | </ItemsControl>
|
||
423 | 6a19b48d | taeseongkim | <InkPresenter
|
424 | x:Name="inkBoard" |
||
425 | HorizontalAlignment="Stretch" |
||
426 | VerticalAlignment="Stretch" |
||
427 | Panel.ZIndex="1" /> |
||
428 | <InkCanvas
|
||
429 | x:Name="inkDrawingCanvas" |
||
430 | Width="1" |
||
431 | Height="1" |
||
432 | Panel.ZIndex="1" |
||
433 | Background="Transparent" |
||
434 | IsEnabled="False" |
||
435 | Strokes="{Binding MarkupPens, Source={x:Static common:ViewerDataModel.Instance}}"> |
||
436 | 787a4489 | KangIngu | <!--<Rectangle Height="41" HorizontalAlignment="Left" Name="rectangle1" Stroke="Black" VerticalAlignment="Top" Width="69" Fill="#FFDB1111" />-->
|
437 | <!--<Ellipse Height="41" HorizontalAlignment="Left" Name="rectangle1" Stroke="Black" VerticalAlignment="Top" Width="69" Fill="#FFDB1111" />-->
|
||
438 | |||
439 | <!--<MarkupToPDF:RectangleControl Height="200" HorizontalAlignment="Center" Name="rectangle2" StrokeColor="Black" VerticalAlignment="Top" Width="00" FillColor="Red"/>-->
|
||
440 | </InkCanvas>
|
||
441 | 6a19b48d | taeseongkim | <!-- 강인구 추가 -->
|
442 | f65e6c02 | taeseongkim | <!--<controls:ScaleDecodeImage Panel.ZIndex="0" x:Name="mainPanel"
|
443 | 6a19b48d | taeseongkim | Source="{Binding ImageViewPath,Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
|
444 | 92442e4a | taeseongkim | Width="{Binding ImageViewWidth,Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
|
445 | cdfb57ff | taeseongkim | Height="{Binding ImageViewHeight,Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}">
|
446 | 7e2d682c | taeseongkim | </controls:ScaleDecodeImage>-->
|
447 | 6a19b48d | taeseongkim | <Image
|
448 | x:Name="mainPanel" |
||
449 | Width="{Binding ImageViewWidth, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" |
||
450 | Height="{Binding ImageViewHeight, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" |
||
451 | Panel.ZIndex="0" |
||
452 | RenderOptions.BitmapScalingMode="HighQuality" |
||
453 | RenderOptions.ClearTypeHint="Enabled" |
||
454 | RenderOptions.EdgeMode="Unspecified" |
||
455 | Source="{Binding ImageViewPath, Mode=OneWay, Source={x:Static common:ViewerDataModel.Instance}}" /> |
||
456 | <Canvas
|
||
457 | x:Name="SelectLayer" |
||
458 | HorizontalAlignment="Stretch" |
||
459 | VerticalAlignment="Stretch" |
||
460 | Panel.ZIndex="32766" /> |
||
461 | <Border
|
||
462 | x:Name="dragSelectionBorder" |
||
463 | Panel.ZIndex="1" |
||
464 | Background="LightBlue" |
||
465 | BorderBrush="Blue" |
||
466 | BorderThickness="1" |
||
467 | CornerRadius="1" |
||
468 | Opacity="0.5" |
||
469 | Visibility="Collapsed" /> |
||
470 | <Border
|
||
471 | x:Name="dragCaptureBorder" |
||
472 | Panel.ZIndex="1" |
||
473 | Background="Blue" |
||
474 | BorderBrush="Blue" |
||
475 | BorderThickness="1" |
||
476 | CornerRadius="1" |
||
477 | Opacity="0.5" |
||
478 | Visibility="Collapsed" /> |
||
479 | f65e6c02 | taeseongkim | |
480 | 6a19b48d | taeseongkim | <Border
|
481 | x:Name="dragZoomBorder" |
||
482 | Panel.ZIndex="1" |
||
483 | Background="Transparent" |
||
484 | BorderThickness="3" |
||
485 | CornerRadius="1" |
||
486 | Opacity="1" |
||
487 | Visibility="Collapsed"> |
||
488 | 9f473fb7 | KangIngu | <Border.BorderBrush>
|
489 | <VisualBrush>
|
||
490 | <VisualBrush.Visual>
|
||
491 | 6a19b48d | taeseongkim | <Rectangle
|
492 | Width="{Binding RelativeSource={RelativeSource AncestorType={x:Type Border}}, Path=ActualWidth}" |
||
493 | Height="{Binding RelativeSource={RelativeSource AncestorType={x:Type Border}}, Path=ActualHeight}" |
||
494 | Stroke="Gray" |
||
495 | StrokeDashArray="4 2" |
||
496 | StrokeThickness="1" /> |
||
497 | 9f473fb7 | KangIngu | </VisualBrush.Visual>
|
498 | </VisualBrush>
|
||
499 | </Border.BorderBrush>
|
||
500 | </Border>
|
||
501 | <!--<Border x:Name="dragZoomBorder"
|
||
502 | BorderBrush="Black"
|
||
503 | BorderThickness="1"
|
||
504 | 6a19b48d | taeseongkim | |
505 | Background="Transparent"
|
||
506 | 9f473fb7 | KangIngu | CornerRadius="1"
|
507 | Panel.ZIndex="1"
|
||
508 | Opacity="0.5"/>-->
|
||
509 | 6a19b48d | taeseongkim | <Canvas
|
510 | x:Name="SearchFocusBorder" |
||
511 | Panel.ZIndex="99999" |
||
512 | Background="#50FF5D00" |
||
513 | IsHitTestVisible="False" |
||
514 | Visibility="Collapsed"> |
||
515 | <Border
|
||
516 | Width="{Binding Width, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Canvas}}}" |
||
517 | Height="{Binding Height, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Canvas}}}" |
||
518 | Panel.ZIndex="99999" |
||
519 | Background="#50FF5D00" |
||
520 | f4ec4218 | taeseongkim | BorderThickness="1" |
521 | CornerRadius="1" |
||
522 | 6a19b48d | taeseongkim | IsHitTestVisible="False" |
523 | Visibility="Collapsed" /> |
||
524 | f65e6c02 | taeseongkim | </Canvas>
|
525 | <!--<Border Background="Red" Panel.ZIndex="1" Opacity="0.5" Visibility="Visible" Width="100" Height="100" />-->
|
||
526 | 787a4489 | KangIngu | </Canvas>
|
527 | |||
528 | <!--<Border Background="Red" Panel.ZIndex="1" Opacity="0.5" Visibility="Visible" Width="1000" Height="1000" IsHitTestVisible="False"/>-->
|
||
529 | |||
530 | <!--<Leadtools_Windows_Controls:RasterImageViewer x:Name="_imageViewer" Grid.Row="1" BorderThickness="0"/>-->
|
||
531 | </Canvas>
|
||
532 | </ZoomAndPan:ZoomAndPanControl>
|
||
533 | 6a19b48d | taeseongkim | <telerik:RadBusyIndicator
|
534 | x:Name="busyIndicator" |
||
535 | BusyContent="Saving..." |
||
536 | IsBusy="False" |
||
537 | Visibility="{Binding IsBusy, Converter={StaticResource BoolToVisibleConverter}, RelativeSource={RelativeSource Self}}" /> |
||
538 | <!-- 캡쳐 화면을 위한 보더 -->
|
||
539 | <Border
|
||
540 | Background="LightGray" |
||
541 | IsHitTestVisible="False" |
||
542 | Opacity="{Binding Capture_Opacity, Source={x:Static common:ViewerDataModel.Instance}}"> |
||
543 | <TextBlock
|
||
544 | HorizontalAlignment="Right" |
||
545 | FontSize="30" |
||
546 | Foreground="Red" |
||
547 | Text="캡쳐 진행 화면" /> |
||
548 | 787a4489 | KangIngu | </Border>
|
549 | 6a19b48d | taeseongkim | <Angle:AngleControl
|
550 | x:Name="MainAngle" |
||
551 | Grid.Column="1" |
||
552 | Grid.ColumnSpan="2" |
||
553 | Margin="10" |
||
554 | HorizontalAlignment="Right" |
||
555 | VerticalAlignment="Top" |
||
556 | AngleValue="{Binding MarkupAngle, Mode=TwoWay, StringFormat=\{0:F0\}°, Source={x:Static common:ViewerDataModel.Instance}}" |
||
557 | IsHitTestVisible="False" |
||
558 | Visibility="{Binding MarkupAngleVisibility, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" /> |
||
559 | 787a4489 | KangIngu | </Grid>
|
560 | </telerik:RadDocumentPane>
|
||
561 | </telerik:RadPaneGroup>
|
||
562 | 43d2041c | taeseongkim | <telerik:RadPaneGroup Style="{DynamicResource Style_RadPanelGroup}"> |
563 | 6a19b48d | taeseongkim | <telerik:RadPane
|
564 | x:Name="testPanel2" |
||
565 | Title="Document 1" |
||
566 | Margin="0,-20,0,0" |
||
567 | CanFloat="False" |
||
568 | CanUserClose="False" |
||
569 | IsHidden="True" |
||
570 | PaneHeaderVisibility="Collapsed"> |
||
571 | 787a4489 | KangIngu | <Grid Background="{DynamicResource KCOMColor_DocumnetBackgroundBrush}"> |
572 | 6a19b48d | taeseongkim | <ZoomAndPan:ZoomAndPanControl
|
573 | x:Name="zoomAndPanControl2" |
||
574 | AllowDrop="True" |
||
575 | Background="LightGray" |
||
576 | ConstrainedContentViewportHeight="{Binding ContentViewportHeight, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" |
||
577 | ConstrainedContentViewportWidth="{Binding ContentViewportWidth, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" |
||
578 | ContentOffsetX="{Binding Sync_ContentOffsetX, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" |
||
579 | ContentOffsetY="{Binding Sync_ContentOffsetY, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" |
||
580 | ContentScale="{Binding Sync_ContentScale, Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" |
||
581 | MouseDown="zoomAndPanControl2_MouseDown" |
||
582 | MouseLeave="zoomAndPanControl_MouseLeave" |
||
583 | MouseMove="zoomAndPanControl2_MouseMove" |
||
584 | MouseUp="zoomAndPanControl2_MouseUp" |
||
585 | MouseWheel="zoomAndPanControl2_MouseWheel"> |
||
586 | <Canvas
|
||
587 | x:Name="zoomAndPanCanvas2" |
||
588 | Background="Transparent" |
||
589 | Opacity="1"> |
||
590 | <Canvas
|
||
591 | x:Name="drawingRotateCanvas2" |
||
592 | Panel.ZIndex="1" |
||
593 | Background="{Binding BackgroundImage, Mode=OneWay, Source={x:Static common:ViewerDataModel.Instance}}"> |
||
594 | 787a4489 | KangIngu | <Canvas.RenderTransform>
|
595 | <TransformGroup>
|
||
596 | 6a19b48d | taeseongkim | <RotateTransform x:Name="rotate2" Angle="0" /> |
597 | <TranslateTransform x:Name="translate2" X="0" Y="0" /> |
||
598 | 787a4489 | KangIngu | </TransformGroup>
|
599 | </Canvas.RenderTransform>
|
||
600 | 6a19b48d | taeseongkim | <ItemsControl
|
601 | x:Name="itemsControl" |
||
602 | Panel.ZIndex="1" |
||
603 | ItemsSource="{Binding MarkupControls_Sync, Source={x:Static common:ViewerDataModel.Instance}}"> |
||
604 | 787a4489 | KangIngu | <ItemsControl.ItemsPanel>
|
605 | <ItemsPanelTemplate>
|
||
606 | 6a19b48d | taeseongkim | <Canvas /> |
607 | 787a4489 | KangIngu | </ItemsPanelTemplate>
|
608 | </ItemsControl.ItemsPanel>
|
||
609 | </ItemsControl>
|
||
610 | 6a19b48d | taeseongkim | <Image
|
611 | x:Name="ComparePanel" |
||
612 | Width="{Binding ImageViewWidth_C, Source={x:Static common:ViewerDataModel.Instance}}" |
||
613 | Height="{Binding ImageViewHeight_C, Source={x:Static common:ViewerDataModel.Instance}}" |
||
614 | Source="{Binding ImageViewPath_C, Source={x:Static common:ViewerDataModel.Instance}}" /> |
||
615 | <Canvas
|
||
616 | x:Name="canvas_compareBorder" |
||
617 | Width="{Binding ActualWidth, ElementName=zoomAndPanCanvas2}" |
||
618 | Height="{Binding ActualHeight, ElementName=zoomAndPanCanvas2}" |
||
619 | Panel.ZIndex="1" |
||
620 | IsHitTestVisible="False"> |
||
621 | <!-- RenderTransform="{Binding RenderTransform, ElementName=zoomAndPanControl2}" -->
|
||
622 | 43d2041c | taeseongkim | <Canvas.RenderTransform>
|
623 | <TransformGroup>
|
||
624 | 6a19b48d | taeseongkim | <RotateTransform x:Name="rotate2CompareBorder" Angle="0" /> |
625 | <TranslateTransform x:Name="translate2CompareBorder" X="0" Y="0" /> |
||
626 | 43d2041c | taeseongkim | </TransformGroup>
|
627 | </Canvas.RenderTransform>
|
||
628 | 787a4489 | KangIngu | <!--<Canvas.RenderTransform>
|
629 | 43d2041c | taeseongkim | <RotateTransform Angle="{Binding RenderTransform, ElementName=zoomAndPanControl2}"/>
|
630 | 787a4489 | KangIngu | </Canvas.RenderTransform>-->
|
631 | </Canvas>
|
||
632 | 6a19b48d | taeseongkim | <!-- 강인구 추가 -->
|
633 | 787a4489 | KangIngu | </Canvas>
|
634 | </Canvas>
|
||
635 | </ZoomAndPan:ZoomAndPanControl>
|
||
636 | 6a19b48d | taeseongkim | <Grid
|
637 | Background="#FF353535" |
||
638 | IsHitTestVisible="False" |
||
639 | Opacity="0.1" /> |
||
640 | 787a4489 | KangIngu | |
641 | 9b9de5b2 | ljiyeon | <!--<Viewbox VerticalAlignment="Stretch" HorizontalAlignment="Stretch" StretchDirection="DownOnly" Stretch="Uniform" IsHitTestVisible="False">
|
642 | 787a4489 | KangIngu | <TextBlock Text="Previous Document" HorizontalAlignment="Center" VerticalAlignment="Center" RenderTransformOrigin="0.5, 0.5" FontSize="50"
|
643 | Foreground="White" Opacity="0.5" FontWeight="Bold">
|
||
644 | <TextBlock.RenderTransform>
|
||
645 | <RotateTransform Angle="-25"/>
|
||
646 | </TextBlock.RenderTransform>
|
||
647 | </TextBlock>
|
||
648 | 9b9de5b2 | ljiyeon | </Viewbox>-->
|
649 | 787a4489 | KangIngu | |
650 | <!--<telerik:RadExpander Header="OPEN" Background="Transparent" telerik:StyleManager.Theme="Office2016"
|
||
651 | ExpandDirection="Right" VerticalAlignment="Top" HorizontalAlignment="Left">-->
|
||
652 | 6a19b48d | taeseongkim | <Grid Height="Auto" VerticalAlignment="Top"> |
653 | 787a4489 | KangIngu | <Grid.RowDefinitions>
|
654 | 6a19b48d | taeseongkim | <RowDefinition /> |
655 | <RowDefinition /> |
||
656 | 787a4489 | KangIngu | </Grid.RowDefinitions>
|
657 | <!--<Border Background="#3b3838" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Opacity="0.5" Grid.RowSpan="2"/>-->
|
||
658 | 6a19b48d | taeseongkim | <Border
|
659 | Grid.RowSpan="2" |
||
660 | HorizontalAlignment="Stretch" |
||
661 | VerticalAlignment="Stretch" |
||
662 | Background="Black" |
||
663 | BorderThickness="0" |
||
664 | Opacity="0.5" /> |
||
665 | <StackPanel HorizontalAlignment="Left" Orientation="Horizontal"> |
||
666 | 787a4489 | KangIngu | <!--<TextBlock Text="ReadOnly Mode" Foreground="#FFFF9A25" VerticalAlignment="Center" Margin="10"/>-->
|
667 | 6a19b48d | taeseongkim | <TextBlock
|
668 | x:Name="tlSyncRev" |
||
669 | Margin="10" |
||
670 | VerticalAlignment="Center" |
||
671 | Foreground="#FFFF9A25" |
||
672 | Text="Rev.A" /> |
||
673 | <TextBlock
|
||
674 | x:Name="tlSyncPageNum" |
||
675 | VerticalAlignment="Center" |
||
676 | Foreground="White" |
||
677 | Text="Current Page : 1" /> |
||
678 | 787a4489 | KangIngu | </StackPanel>
|
679 | 6a19b48d | taeseongkim | <StackPanel HorizontalAlignment="Right" Orientation="Horizontal"> |
680 | 787a4489 | KangIngu | <!--<telerik:RadToggleButton x:Name="CompareMode" IsChecked="False" Content="Compare" Margin="5" Checked="SyncCompare_Click" Unchecked="SyncCompare_Click" BorderThickness="0" telerik:StyleManager.Theme="Office2013"
|
681 | Style="{DynamicResource RadToggleSwtichButtonStyle}" Width="Auto" Padding="10,0"/>-->
|
||
682 | <!--<telerik:RadRibbonToggleButton x:Name="UserList" Content="User List" Foreground="white" Margin="5" Click="SyncUserListExpender_Click" BorderThickness="0" telerik:StyleManager.Theme="Office2013" VerticalAlignment="Center"/>-->
|
||
683 | 9cd2865b | KangIngu | |
684 | 6a19b48d | taeseongkim | <toggle:HorizontalToggleSwitch
|
685 | x:Name="Sync" |
||
686 | Width="75" |
||
687 | Margin="5" |
||
688 | telerik:StyleManager.Theme="Office2013" |
||
689 | BorderBrush="Transparent" |
||
690 | BorderThickness="0" |
||
691 | Checked="Sync_Click" |
||
692 | CheckedContent="Sync" |
||
693 | FontSize="10" |
||
694 | FontWeight="Normal" |
||
695 | IsChecked="False" |
||
696 | Opacity="0.6" |
||
697 | ThumbSize="25" |
||
698 | Unchecked="Sync_Click" |
||
699 | UncheckedContent="Sync" /> |
||
700 | 9cd2865b | KangIngu | |
701 | 6a19b48d | taeseongkim | <toggle:HorizontalToggleSwitch
|
702 | x:Name="UserList" |
||
703 | Width="75" |
||
704 | Margin="5" |
||
705 | telerik:StyleManager.Theme="Office2013" |
||
706 | BorderBrush="Transparent" |
||
707 | BorderThickness="0" |
||
708 | Checked="SyncUserListExpender_Click" |
||
709 | CheckedContent="User List" |
||
710 | FontSize="10" |
||
711 | FontWeight="Normal" |
||
712 | IsChecked="False" |
||
713 | Opacity="0.6" |
||
714 | ThumbSize="25" |
||
715 | Unchecked="SyncUserListExpender_Click" |
||
716 | UncheckedContent="User List" /> |
||
717 | 787a4489 | KangIngu | |
718 | 6a19b48d | taeseongkim | <toggle:HorizontalToggleSwitch
|
719 | x:Name="CompareMode" |
||
720 | Width="90" |
||
721 | Margin="5" |
||
722 | telerik:StyleManager.Theme="Office2013" |
||
723 | BorderBrush="Transparent" |
||
724 | BorderThickness="0" |
||
725 | Checked="SyncCompare_Click" |
||
726 | CheckedContent="Compare On" |
||
727 | FontSize="10" |
||
728 | FontWeight="Normal" |
||
729 | IsChecked="False" |
||
730 | Opacity="0.6" |
||
731 | ThumbSize="25" |
||
732 | Unchecked="SyncCompare_Click" |
||
733 | UncheckedContent="Compare Off" /> |
||
734 | 787a4489 | KangIngu | |
735 | 6a19b48d | taeseongkim | <toggle:HorizontalToggleSwitch
|
736 | x:Name="MarkupMode" |
||
737 | Width="75" |
||
738 | Margin="5" |
||
739 | telerik:StyleManager.Theme="Office2013" |
||
740 | BorderBrush="Transparent" |
||
741 | BorderThickness="0" |
||
742 | Checked="SyncChange_Click" |
||
743 | CheckedContent="Pdf" |
||
744 | FontSize="10" |
||
745 | FontWeight="Normal" |
||
746 | IsChecked="False" |
||
747 | Opacity="0.6" |
||
748 | ThumbSize="25" |
||
749 | Unchecked="SyncChange_Click" |
||
750 | UncheckedContent="Markup" |
||
751 | Visibility="Collapsed" /> |
||
752 | 787a4489 | KangIngu | |
753 | 6a19b48d | taeseongkim | <toggle:HorizontalToggleSwitch
|
754 | x:Name="BalanceMode" |
||
755 | Width="90" |
||
756 | Margin="5" |
||
757 | telerik:StyleManager.Theme="Office2013" |
||
758 | BorderBrush="Transparent" |
||
759 | BorderThickness="0" |
||
760 | Checked="SyncPageBalance_Click" |
||
761 | CheckedContent="Balance On" |
||
762 | FontSize="10" |
||
763 | FontWeight="Normal" |
||
764 | IsChecked="False" |
||
765 | Opacity="0.6" |
||
766 | ThumbSize="25" |
||
767 | Unchecked="SyncPageBalance_Click" |
||
768 | UncheckedContent="Balance Off" |
||
769 | Visibility="Collapsed" /> |
||
770 | <toggle:HorizontalToggleSwitch
|
||
771 | x:Name="OriginalSizeMode" |
||
772 | Width="90" |
||
773 | Margin="5" |
||
774 | telerik:StyleManager.Theme="Office2013" |
||
775 | BorderBrush="Transparent" |
||
776 | BorderThickness="0" |
||
777 | Checked="OriginalSizeMode_Click" |
||
778 | CheckedContent="Original Size" |
||
779 | FontSize="10" |
||
780 | FontWeight="Normal" |
||
781 | IsChecked="False" |
||
782 | Opacity="0.6" |
||
783 | ThumbSize="25" |
||
784 | Unchecked="OriginalSizeMode_Click" |
||
785 | UncheckedContent="Uniform Size" /> |
||
786 | 787a4489 | KangIngu | |
787 | <!--<telerik:RadRibbonToggleButton x:Name="MArkupMode" Content="Markup Mode" Foreground="White" Margin="5" Click="SyncChange_Click" BorderThickness="0" telerik:StyleManager.Theme="Office2013"/>-->
|
||
788 | <!--<telerik:RadRibbonToggleButton x:Name="BalanceMode" Content="Balance Mode" Foreground="White" Margin="5" Click="SyncPageBalance_Click" BorderThickness="0" telerik:StyleManager.Theme="Office2013"/>-->
|
||
789 | 6a19b48d | taeseongkim | <telerik:RadPathButton
|
790 | Width="20" |
||
791 | Height="10" |
||
792 | Margin="5" |
||
793 | VerticalAlignment="Center" |
||
794 | telerik:StyleManager.Theme="Office2013" |
||
795 | Click="SyncPageChange_Click" |
||
796 | PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphArrowChevronUp}}" |
||
797 | Style="{StaticResource IconPathButton}" |
||
798 | Tag="-1"> |
||
799 | 43d2041c | taeseongkim | <!--<Image Height="20"
|
800 | 787a4489 | KangIngu | Source="/KCOM;component/Resources/Images/MenuImage_New/up-arrow.png"
|
801 | 43d2041c | taeseongkim | Stretch="Uniform" />-->
|
802 | </telerik:RadPathButton>
|
||
803 | 6a19b48d | taeseongkim | <telerik:RadPathButton
|
804 | Width="20" |
||
805 | Height="10" |
||
806 | Margin="5" |
||
807 | VerticalAlignment="Center" |
||
808 | telerik:StyleManager.Theme="Office2013" |
||
809 | Click="SyncPageChange_Click" |
||
810 | PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphArrowChevronDown}}" |
||
811 | Style="{StaticResource IconPathButton}" |
||
812 | Tag="1"> |
||
813 | 43d2041c | taeseongkim | <!--<Image Height="20"
|
814 | 787a4489 | KangIngu | Source="/KCOM;component/Resources/Images/MenuImage_New/up-arrow.png" RenderTransformOrigin="0.5 0.5"
|
815 | Stretch="Uniform">
|
||
816 | <Image.RenderTransform>
|
||
817 | <RotateTransform Angle="180"/>
|
||
818 | </Image.RenderTransform>
|
||
819 | 43d2041c | taeseongkim | </Image>-->
|
820 | </telerik:RadPathButton>
|
||
821 | 6a19b48d | taeseongkim | <telerik:RadPathButton
|
822 | Width="20" |
||
823 | Height="10" |
||
824 | Margin="5" |
||
825 | VerticalAlignment="Center" |
||
826 | telerik:StyleManager.Theme="Office2013" |
||
827 | Click="SyncRotation_Click" |
||
828 | PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphReloadSmall}}" |
||
829 | Style="{StaticResource IconPathButton}" |
||
830 | Tag="1" /> |
||
831 | <telerik:RadPathButton
|
||
832 | Width="20" |
||
833 | Height="10" |
||
834 | Margin="5" |
||
835 | VerticalAlignment="Center" |
||
836 | telerik:StyleManager.Theme="Office2013" |
||
837 | Click="SyncRotation_Click" |
||
838 | PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphResetSmall}}" |
||
839 | Style="{StaticResource IconPathButton}" |
||
840 | Tag="-1" /> |
||
841 | <telerik:RadPathButton
|
||
842 | Width="20" |
||
843 | Height="10" |
||
844 | Margin="5" |
||
845 | VerticalAlignment="Center" |
||
846 | telerik:StyleManager.Theme="Office2013" |
||
847 | Click="SyncExit_Click" |
||
848 | PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphClose}}" |
||
849 | Style="{StaticResource IconPathButton}"> |
||
850 | 43d2041c | taeseongkim | <!--<Image Height="20"
|
851 | 787a4489 | KangIngu | Source="/KCOM;component/Resources/Images/MenuImage_New/cancel.png"
|
852 | 43d2041c | taeseongkim | Stretch="Uniform" />-->
|
853 | </telerik:RadPathButton>
|
||
854 | 787a4489 | KangIngu | </StackPanel>
|
855 | 6a19b48d | taeseongkim | <telerik:RadGridView
|
856 | x:Name="gridViewRevMarkup" |
||
857 | Grid.Row="1" |
||
858 | HorizontalContentAlignment="Center" |
||
859 | telerik:StyleManager.Theme="Office2013" |
||
860 | AutoExpandGroups="False" |
||
861 | AutoGenerateColumns="False" |
||
862 | BorderThickness="0" |
||
863 | CanUserDeleteRows="True" |
||
864 | CanUserFreezeColumns="False" |
||
865 | CanUserInsertRows="False" |
||
866 | GridLinesVisibility="None" |
||
867 | IsFilteringAllowed="False" |
||
868 | RowIndicatorVisibility="Collapsed" |
||
869 | SelectionChanged="gridViewRevMarkup_SelectionChanged" |
||
870 | SelectionMode="Multiple" |
||
871 | ShowGroupFooters="False" |
||
872 | ShowGroupPanel="False" |
||
873 | Visibility="Collapsed"> |
||
874 | 787a4489 | KangIngu | <telerik:RadGridView.HeaderRowStyle>
|
875 | <Style TargetType="telerik:GridViewHeaderRow"> |
||
876 | 6a19b48d | taeseongkim | <Setter Property="BorderThickness" Value="0" /> |
877 | <Setter Property="Background" Value="Red" /> |
||
878 | <Setter Property="Foreground" Value="White" /> |
||
879 | <Setter Property="HorizontalContentAlignment" Value="Center" /> |
||
880 | <Setter Property="FontWeight" Value="Black" /> |
||
881 | <Setter Property="telerik:StyleManager.Theme" Value="Office2013" /> |
||
882 | 787a4489 | KangIngu | </Style>
|
883 | </telerik:RadGridView.HeaderRowStyle>
|
||
884 | <telerik:RadGridView.RowStyle>
|
||
885 | <Style TargetType="telerik:GridViewRow"> |
||
886 | 6a19b48d | taeseongkim | <Setter Property="HorizontalContentAlignment" Value="Center" /> |
887 | 787a4489 | KangIngu | <Setter Property="Background" Value="{Binding Path=Consolidate, Converter={StaticResource ConsolidationBackgroudConverter}}" /> |
888 | 6a19b48d | taeseongkim | <Setter Property="Foreground" Value="White" /> |
889 | 787a4489 | KangIngu | </Style>
|
890 | </telerik:RadGridView.RowStyle>
|
||
891 | <telerik:RadGridView.Columns>
|
||
892 | 6a19b48d | taeseongkim | <telerik:GridViewSelectColumn Width="Auto" HeaderCellStyle="{StaticResource GridViewHeaderStyle}"> |
893 | 787a4489 | KangIngu | <telerik:GridViewSelectColumn.Header>
|
894 | 6a19b48d | taeseongkim | <telerik:RadRibbonToggleButton
|
895 | Width="Auto" |
||
896 | telerik:StyleManager.Theme="Office2016" |
||
897 | Visibility="Collapsed"> |
||
898 | 787a4489 | KangIngu | <telerik:RadRibbonToggleButton.Content>
|
899 | 6a19b48d | taeseongkim | <Image
|
900 | HorizontalAlignment="Center" |
||
901 | VerticalAlignment="Center" |
||
902 | Source="/KCOM;component/Resources/Images/MenuImage_New/check.png" /> |
||
903 | 787a4489 | KangIngu | </telerik:RadRibbonToggleButton.Content>
|
904 | </telerik:RadRibbonToggleButton>
|
||
905 | </telerik:GridViewSelectColumn.Header>
|
||
906 | </telerik:GridViewSelectColumn>
|
||
907 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
908 | Width="Auto" |
||
909 | Header="Color" |
||
910 | HeaderCellStyle="{StaticResource GridViewHeaderStyle}" |
||
911 | IsReadOnly="True"> |
||
912 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
913 | <DataTemplate>
|
||
914 | <Grid>
|
||
915 | <Grid>
|
||
916 | 3abe8d4e | taeseongkim | <Rectangle Margin="0,2,2,2" Fill="{Binding DisplayColor, Converter={StaticResource StringToColorBrushConverter}}" /> |
917 | 787a4489 | KangIngu | <TextBlock Foreground="#00000000" Text="Color" /> |
918 | </Grid>
|
||
919 | <Grid VerticalAlignment="Center" Visibility="{Binding AvoidConsolidate, Converter={StaticResource BoolToVisibleConverter}}"> |
||
920 | 6a19b48d | taeseongkim | <Image
|
921 | Height="15" |
||
922 | Source="/KCOM;component/Resources/Images/MenuImage_New/lock_2.png" |
||
923 | Stretch="Uniform" /> |
||
924 | 787a4489 | KangIngu | </Grid>
|
925 | </Grid>
|
||
926 | |||
927 | </DataTemplate>
|
||
928 | </telerik:GridViewDataColumn.CellTemplate>
|
||
929 | </telerik:GridViewDataColumn>
|
||
930 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
931 | Width="Auto" |
||
932 | Header="DEPT" |
||
933 | HeaderCellStyle="{StaticResource GridViewHeaderStyle}" |
||
934 | IsReadOnly="True"> |
||
935 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
936 | <DataTemplate>
|
||
937 | 6a19b48d | taeseongkim | <TextBlock FontSize="12" Text="{Binding Depatment}" /> |
938 | 787a4489 | KangIngu | </DataTemplate>
|
939 | </telerik:GridViewDataColumn.CellTemplate>
|
||
940 | </telerik:GridViewDataColumn>
|
||
941 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
942 | Width="Auto" |
||
943 | Header="NAME" |
||
944 | HeaderCellStyle="{StaticResource GridViewHeaderStyle}" |
||
945 | IsReadOnly="True"> |
||
946 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
947 | <DataTemplate>
|
||
948 | 6a19b48d | taeseongkim | <TextBlock FontSize="10" Text="{Binding UserName, Mode=TwoWay}" /> |
949 | 787a4489 | KangIngu | </DataTemplate>
|
950 | </telerik:GridViewDataColumn.CellTemplate>
|
||
951 | </telerik:GridViewDataColumn>
|
||
952 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
953 | Width="Auto" |
||
954 | Header="CONSOLIDATION" |
||
955 | HeaderCellStyle="{StaticResource GridViewHeaderStyle}" |
||
956 | IsReadOnly="True"> |
||
957 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
958 | <DataTemplate>
|
||
959 | <!--<TextBlock Text="{Binding Consolidate}"/>-->
|
||
960 | <Grid>
|
||
961 | <Grid.ColumnDefinitions>
|
||
962 | <ColumnDefinition Width="Auto" /> |
||
963 | <ColumnDefinition Width="Auto" /> |
||
964 | <ColumnDefinition Width="Auto" /> |
||
965 | </Grid.ColumnDefinitions>
|
||
966 | |||
967 | 6a19b48d | taeseongkim | <TextBlock
|
968 | Grid.Column="0" |
||
969 | Foreground="Red" |
||
970 | Text="{Binding AvoidConsolidate, Converter={StaticResource AvoidStringConverter}}" /> |
||
971 | <TextBlock
|
||
972 | Grid.Column="1" |
||
973 | Foreground="Blue" |
||
974 | Text="{Binding PartConsolidate, Converter={StaticResource TeamConsoliStringConverter}}" /> |
||
975 | 787a4489 | KangIngu | <TextBlock Grid.Column="2" Text="{Binding Consolidate, Converter={StaticResource ConsoliStringConverter}}" /> |
976 | <!--
|
||
977 | <TextBlock HorizontalAlignment="Center" Grid.Column="2">
|
||
978 | <TextBlock.Text>
|
||
979 | <Binding Converter="{StaticResource ConsoliStringConverter}"/>
|
||
980 | </TextBlock.Text>
|
||
981 | </TextBlock>
|
||
982 | 6a19b48d | taeseongkim | -->
|
983 | 787a4489 | KangIngu | </Grid>
|
984 | </DataTemplate>
|
||
985 | </telerik:GridViewDataColumn.CellTemplate>
|
||
986 | </telerik:GridViewDataColumn>
|
||
987 | |||
988 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
989 | Width="Auto" |
||
990 | Header="Comment Move" |
||
991 | HeaderCellStyle="{StaticResource GridViewHeaderStyle}" |
||
992 | IsReadOnly="True"> |
||
993 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
994 | <DataTemplate>
|
||
995 | 6a19b48d | taeseongkim | <telerik:RadButton
|
996 | HorizontalAlignment="Stretch" |
||
997 | VerticalAlignment="Stretch" |
||
998 | telerik:StyleManager.Theme="Office2016" |
||
999 | Content="COPY" |
||
1000 | PreviewMouseDown="Comment_Move" /> |
||
1001 | 787a4489 | KangIngu | <!--<TextBlock Text="{Binding UserName, Mode=TwoWay}" FontSize="10"/>-->
|
1002 | </DataTemplate>
|
||
1003 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1004 | </telerik:GridViewDataColumn>
|
||
1005 | |||
1006 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
1007 | Width="*" |
||
1008 | Header="" |
||
1009 | HeaderCellStyle="{StaticResource GridViewHeaderStyle}" |
||
1010 | IsReadOnly="True" /> |
||
1011 | 787a4489 | KangIngu | </telerik:RadGridView.Columns>
|
1012 | </telerik:RadGridView>
|
||
1013 | </Grid>
|
||
1014 | <!--</telerik:RadExpander>-->
|
||
1015 | |||
1016 | |||
1017 | </Grid>
|
||
1018 | </telerik:RadPane>
|
||
1019 | </telerik:RadPaneGroup>
|
||
1020 | </telerik:RadSplitContainer>
|
||
1021 | </telerik:RadDocking.DocumentHost>
|
||
1022 | 6a19b48d | taeseongkim | <telerik:RadSplitContainer
|
1023 | x:Name="thumbnailPanel" |
||
1024 | InitialPosition="DockedLeft" |
||
1025 | Orientation="Vertical" |
||
1026 | SizeChanged="thumbnailPanel_SizeChanged" |
||
1027 | Template="{DynamicResource RadSplitContainerControlTemplate}"> |
||
1028 | <!-- Width="250" MinWidth="250" -->
|
||
1029 | 787a4489 | KangIngu | <!--<telerik:RadPaneGroup Margin="0" Style="{DynamicResource Style_RadPanelGroup}">-->
|
1030 | 6a19b48d | taeseongkim | <telerik:RadPaneGroup
|
1031 | x:Name="PN_Navi" |
||
1032 | Margin="0" |
||
1033 | telerik:StyleManager.Theme="Office2016"> |
||
1034 | <telerik:RadPane
|
||
1035 | x:Name="radPanelPageNavi" |
||
1036 | telerik:RadDocking.FloatingSize="50,NaN" |
||
1037 | telerik:StyleManager.Theme="Office2016" |
||
1038 | CanFloat="False" |
||
1039 | CanUserClose="False" |
||
1040 | CanUserPin="True" |
||
1041 | ContextMenuTemplate="{x:Null}" |
||
1042 | Header="DOCUMENT" |
||
1043 | PaneHeaderVisibility="Visible"> |
||
1044 | 787a4489 | KangIngu | <!--<telerik:RadPane.TitleTemplate>
|
1045 | <DataTemplate>
|
||
1046 | <Grid>
|
||
1047 | <Grid.ColumnDefinitions>
|
||
1048 | <ColumnDefinition Width="Auto" />
|
||
1049 | <ColumnDefinition />
|
||
1050 | </Grid.ColumnDefinitions>
|
||
1051 | <ContentPresenter Content="{Binding}"
|
||
1052 | Margin="0,0,75,0" />
|
||
1053 | <telerik:RadButton Grid.Column="1" Content="PIN"/>
|
||
1054 | </Grid>
|
||
1055 | </DataTemplate>
|
||
1056 | </telerik:RadPane.TitleTemplate>-->
|
||
1057 | <!--<Grid VerticalAlignment="Stretch" Margin="0">
|
||
1058 | <Grid.RowDefinitions>
|
||
1059 | <RowDefinition Height="30"/>
|
||
1060 | <RowDefinition Height="*"/>
|
||
1061 | </Grid.RowDefinitions>
|
||
1062 | <Border BorderBrush="{Binding ElementName=leftPanel}" BorderThickness="0,1">
|
||
1063 | <TextBlock Text="Thumbnail" Margin="5"/>
|
||
1064 | </Border>
|
||
1065 | <controls:PageNavigator x:Name="pageNavigator" Grid.Row="1"/>
|
||
1066 | </Grid>-->
|
||
1067 | <Grid>
|
||
1068 | <!--<controls:PageNavigator x:Name="pageNavigator" Grid.Row="1" Visibility="Collapsed"/>-->
|
||
1069 | <!--<Grid.RowDefinitions>
|
||
1070 | <RowDefinition Height="Auto"/>
|
||
1071 | <RowDefinition Height="*"/>
|
||
1072 | </Grid.RowDefinitions>-->
|
||
1073 | <!--<telerik:RadButton Content="Panorama" telerik:StyleManager.Theme="Office2016" FontSize="8" Background="#FF0054B9" Foreground="White"
|
||
1074 | BorderThickness="0" CornerRadius="3" HorizontalAlignment="Right" Padding="5" Margin="5,10"/>-->
|
||
1075 | 6a19b48d | taeseongkim | <controls:Sample x:Name="pageNavigator" /> |
1076 | 787a4489 | KangIngu | </Grid>
|
1077 | |||
1078 | </telerik:RadPane>
|
||
1079 | eeb0a39c | taeseongkim | <!--<telerik:RadPane Header="test" CanFloat="False" telerik:RadDocking.FloatingSize="50,NaN" CanUserClose="False" CanUserPin="True"
|
1080 | f65e6c02 | taeseongkim | ContextMenuTemplate="{x:Null}" PaneHeaderVisibility="Visible" telerik:StyleManager.Theme="Office2016">
|
1081 | |||
1082 | <Grid xmlns:drag="clr-namespace:Telerik.Windows.DragDrop.Behaviors;assembly=Telerik.Windows.Controls" >
|
||
1083 | <Grid.Resources>
|
||
1084 | <Style TargetType="telerik:RadListBoxItem" BasedOn="{StaticResource RadListBoxItemStyle}">
|
||
1085 | <Setter Property="telerik:DragDropManager.AllowCapturedDrag" Value="True"/>
|
||
1086 | </Style>
|
||
1087 | </Grid.Resources>
|
||
1088 | <telerik:RadListBox x:Name="lstSymbolPrivate" Background="#f5f5f5" FontWeight="Normal" AllowDrop="True">
|
||
1089 | <telerik:RadListBox.DragDropBehavior>
|
||
1090 | <telerik:ListBoxDragDropBehavior AllowReorder="True" />
|
||
1091 | </telerik:RadListBox.DragDropBehavior>
|
||
1092 | <telerik:RadListBox.DragVisualProvider >
|
||
1093 | <telerik:ListBoxDragVisualProvider />
|
||
1094 | </telerik:RadListBox.DragVisualProvider>
|
||
1095 | </telerik:RadListBox>
|
||
1096 | </Grid>
|
||
1097 | |||
1098 | eeb0a39c | taeseongkim | </telerik:RadPane>-->
|
1099 | f65e6c02 | taeseongkim | |
1100 | 787a4489 | KangIngu | </telerik:RadPaneGroup>
|
1101 | </telerik:RadSplitContainer>
|
||
1102 | |||
1103 | 6a19b48d | taeseongkim | <telerik:RadSplitContainer
|
1104 | Width="300" |
||
1105 | MaxWidth="300" |
||
1106 | InitialPosition="DockedRight" |
||
1107 | Orientation="Vertical"> |
||
1108 | <telerik:RadPaneGroup telerik:StyleManager.Theme="Office2016" IsTabStop="False"> |
||
1109 | <telerik:RadPane
|
||
1110 | x:Name="searchPane" |
||
1111 | telerik:StyleManager.Theme="Office2016" |
||
1112 | CanFloat="False" |
||
1113 | CanUserClose="False" |
||
1114 | ContextMenuTemplate="{x:Null}" |
||
1115 | Header="SEARCH" |
||
1116 | IsPinned="False" |
||
1117 | Visibility="Visible"> |
||
1118 | <controls:SearchPanel x:Name="searchPanel_Instance" /> |
||
1119 | 787a4489 | KangIngu | </telerik:RadPane>
|
1120 | </telerik:RadPaneGroup>
|
||
1121 | 6a19b48d | taeseongkim | <telerik:RadPaneGroup telerik:StyleManager.Theme="Office2016" IsTabStop="False"> |
1122 | <telerik:RadPane
|
||
1123 | x:Name="talkPane" |
||
1124 | telerik:StyleManager.Theme="Office2016" |
||
1125 | CanFloat="False" |
||
1126 | CanUserClose="False" |
||
1127 | ContextMenuTemplate="{x:Null}" |
||
1128 | Header="M-TALK" |
||
1129 | IsPinned="False"> |
||
1130 | <messanger:ConversationView /> |
||
1131 | 787a4489 | KangIngu | </telerik:RadPane>
|
1132 | </telerik:RadPaneGroup>
|
||
1133 | 6a19b48d | taeseongkim | <telerik:RadPaneGroup
|
1134 | telerik:StyleManager.Theme="Office2016" |
||
1135 | IsTabStop="False" |
||
1136 | Visibility="Visible"> |
||
1137 | <telerik:RadPane
|
||
1138 | x:Name="SymbolPane" |
||
1139 | telerik:StyleManager.Theme="Office2016" |
||
1140 | CanFloat="False" |
||
1141 | CanUserClose="False" |
||
1142 | ContextMenuTemplate="{x:Null}" |
||
1143 | Header="SYMBOL" |
||
1144 | IsPinned="False" |
||
1145 | Visibility="Visible"> |
||
1146 | 53880c83 | ljiyeon | <!--<controls:Symbol />-->
|
1147 | 6a19b48d | taeseongkim | <controls:Symbol x:Name="symbolPanel_Instance" /> |
1148 | 787a4489 | KangIngu | <!--<telerik:RadButton Click="Create_Symbol">Create</telerik:RadButton>-->
|
1149 | </telerik:RadPane>
|
||
1150 | </telerik:RadPaneGroup>
|
||
1151 | 6a19b48d | taeseongkim | <telerik:RadPaneGroup
|
1152 | telerik:ProportionalStackPanel.RelativeSize="60, 100" |
||
1153 | telerik:StyleManager.Theme="Office2016" |
||
1154 | IsTabStop="False"> |
||
1155 | <telerik:RadPane
|
||
1156 | x:Name="FavoritePane" |
||
1157 | telerik:StyleManager.Theme="Office2016" |
||
1158 | CanFloat="False" |
||
1159 | CanUserClose="False" |
||
1160 | ContextMenuTemplate="{x:Null}" |
||
1161 | Header="FAVORITE" |
||
1162 | IsPinned="False" |
||
1163 | Visibility="Visible"> |
||
1164 | <controls:FavoritePanel /> |
||
1165 | 992a98b4 | KangIngu | </telerik:RadPane>
|
1166 | </telerik:RadPaneGroup>
|
||
1167 | 787a4489 | KangIngu | </telerik:RadSplitContainer>
|
1168 | 6a19b48d | taeseongkim | <telerik:RadSplitContainer InitialPosition="DockedBottom" Orientation="Horizontal"> |
1169 | <telerik:RadPaneGroup
|
||
1170 | telerik:ProportionalStackPanel.RelativeSize="140, 100" |
||
1171 | telerik:StyleManager.Theme="Office2016" |
||
1172 | AllowDrop="False" |
||
1173 | IsTabStop="False"> |
||
1174 | <telerik:RadPane
|
||
1175 | x:Name="infoListPane" |
||
1176 | telerik:StyleManager.Theme="Office2016" |
||
1177 | CanFloat="False" |
||
1178 | CanUserClose="False" |
||
1179 | ContextMenuTemplate="{x:Null}" |
||
1180 | Header="User information List"> |
||
1181 | 787a4489 | KangIngu | <telerik:RadPane.TitleTemplate>
|
1182 | <DataTemplate>
|
||
1183 | 3abe8d4e | taeseongkim | <Grid HorizontalAlignment="Stretch"> |
1184 | 787a4489 | KangIngu | <Grid.ColumnDefinitions>
|
1185 | <ColumnDefinition Width="*" /> |
||
1186 | <ColumnDefinition Width="Auto" /> |
||
1187 | 3abe8d4e | taeseongkim | <ColumnDefinition Width="*" /> |
1188 | 787a4489 | KangIngu | </Grid.ColumnDefinitions>
|
1189 | 3abe8d4e | taeseongkim | <StackPanel HorizontalAlignment="Left" Orientation="Horizontal"> |
1190 | 6a19b48d | taeseongkim | <TextBlock
|
1191 | Margin="1" |
||
1192 | VerticalAlignment="Center" |
||
1193 | Text="{Binding}" /> |
||
1194 | <telerik:RadRibbonButton
|
||
1195 | x:Name="btnConsolidate" |
||
1196 | VerticalAlignment="Center" |
||
1197 | telerik:StyleManager.Theme="Office2016" |
||
1198 | Click="btnConsolidate_Click" |
||
1199 | Loaded="btnConsolidate_Loaded" |
||
1200 | ToolTipService.ToolTip="Consolidate"> |
||
1201 | <Border
|
||
1202 | Background="#E9F0F8" |
||
1203 | BorderBrush="#839AB3" |
||
1204 | BorderThickness="1"> |
||
1205 | 787a4489 | KangIngu | <StackPanel Margin="1" Orientation="Horizontal"> |
1206 | <!--<Image Width="15" Source="/DeepView;component/Images/MenuImage/document-new.png" />-->
|
||
1207 | 6a19b48d | taeseongkim | <TextBlock
|
1208 | Margin="1" |
||
1209 | VerticalAlignment="Center" |
||
1210 | Foreground="Black" |
||
1211 | Text="Consolidate" /> |
||
1212 | 787a4489 | KangIngu | </StackPanel>
|
1213 | </Border>
|
||
1214 | </telerik:RadRibbonButton>
|
||
1215 | 6a19b48d | taeseongkim | <telerik:RadRibbonButton
|
1216 | x:Name="btnTeamConsolidate" |
||
1217 | VerticalAlignment="Center" |
||
1218 | telerik:StyleManager.Theme="Office2016" |
||
1219 | Click="btnTeamConsolidate_Click" |
||
1220 | Loaded="btnTeamConsolidate_Loaded" |
||
1221 | ToolTipService.ToolTip="Consolidate"> |
||
1222 | <Border
|
||
1223 | Background="#E9F0F8" |
||
1224 | BorderBrush="#839AB3" |
||
1225 | BorderThickness="1"> |
||
1226 | 787a4489 | KangIngu | <StackPanel Margin="1" Orientation="Horizontal"> |
1227 | <!--<Image Width="15" Source="/DeepView;component/Images/MenuImage/document-team.png" />-->
|
||
1228 | 6a19b48d | taeseongkim | <TextBlock
|
1229 | Margin="1" |
||
1230 | VerticalAlignment="Center" |
||
1231 | Foreground="Black" |
||
1232 | Text="Team Consolidate" /> |
||
1233 | 787a4489 | KangIngu | </StackPanel>
|
1234 | </Border>
|
||
1235 | </telerik:RadRibbonButton>
|
||
1236 | 6a19b48d | taeseongkim | <telerik:RadRibbonButton
|
1237 | x:Name="btnFinalPDF" |
||
1238 | VerticalAlignment="Center" |
||
1239 | telerik:StyleManager.Theme="Office2016" |
||
1240 | Click="FinalPDFEvent" |
||
1241 | Loaded="btnFinalPDF_Loaded" |
||
1242 | ToolTipService.ToolTip="FinalPDF"> |
||
1243 | <Border
|
||
1244 | Background="#E9F0F8" |
||
1245 | BorderBrush="#839AB3" |
||
1246 | BorderThickness="1"> |
||
1247 | 787a4489 | KangIngu | <StackPanel Margin="1" Orientation="Horizontal"> |
1248 | <!--<Image Width="15" Source="/DeepView;component/Images/MenuImage/final_pdf2.png" />-->
|
||
1249 | 6a19b48d | taeseongkim | <TextBlock
|
1250 | Margin="1" |
||
1251 | VerticalAlignment="Center" |
||
1252 | Foreground="Black" |
||
1253 | Text="Merged PDF" /> |
||
1254 | 787a4489 | KangIngu | </StackPanel>
|
1255 | </Border>
|
||
1256 | </telerik:RadRibbonButton>
|
||
1257 | 6a19b48d | taeseongkim | <telerik:RadRibbonButton
|
1258 | x:Name="btnConsolidateFinalPDF" |
||
1259 | VerticalAlignment="Center" |
||
1260 | telerik:StyleManager.Theme="Office2016" |
||
1261 | Click="ConsolidateFinalPDFEvent" |
||
1262 | Loaded="btnConsolidateFinalPDF_Loaded" |
||
1263 | ToolTipService.ToolTip="Consolidate & FinalPDF" |
||
1264 | Visibility="Collapsed"> |
||
1265 | <Border
|
||
1266 | Background="#E9F0F8" |
||
1267 | BorderBrush="#839AB3" |
||
1268 | BorderThickness="1"> |
||
1269 | 80458c15 | ljiyeon | <StackPanel Margin="1" Orientation="Horizontal"> |
1270 | <!--<Image Width="15" Source="/DeepView;component/Images/MenuImage/final_pdf2.png" />-->
|
||
1271 | 6a19b48d | taeseongkim | <TextBlock
|
1272 | Margin="1" |
||
1273 | VerticalAlignment="Center" |
||
1274 | Foreground="Black" |
||
1275 | Text="Consolidate & Merged PDF" /> |
||
1276 | 80458c15 | ljiyeon | </StackPanel>
|
1277 | </Border>
|
||
1278 | </telerik:RadRibbonButton>
|
||
1279 | 787a4489 | KangIngu | </StackPanel>
|
1280 | 3abe8d4e | taeseongkim | <Line
|
1281 | Grid.Column="1" |
||
1282 | Width="2" |
||
1283 | Margin="5,0" |
||
1284 | VerticalAlignment="Center" |
||
1285 | Stroke="Black" |
||
1286 | X1="2" |
||
1287 | X2="2" |
||
1288 | Y1="2" |
||
1289 | Y2="24" /> |
||
1290 | <telerik:RadRibbonButton
|
||
1291 | x:Name="btnColorList" |
||
1292 | Grid.Column="2" |
||
1293 | HorizontalAlignment="Right" |
||
1294 | VerticalAlignment="Center" |
||
1295 | telerik:StyleManager.Theme="Office2016" |
||
1296 | Click="btnColorList_Click" |
||
1297 | dbddfdd0 | taeseongkim | ToolTipService.ToolTip="Color Change" |
1298 | Visibility="Collapsed"> |
||
1299 | 3abe8d4e | taeseongkim | <Border
|
1300 | Background="#E9F0F8" |
||
1301 | BorderBrush="#839AB3" |
||
1302 | BorderThickness="1"> |
||
1303 | <Image Width="22" Source="/Resources/Images/MenuImage_New/rgb.png" /> |
||
1304 | </Border>
|
||
1305 | </telerik:RadRibbonButton>
|
||
1306 | 787a4489 | KangIngu | <!--<StackPanel Grid.Column="1"
|
1307 | HorizontalAlignment="Right"
|
||
1308 | Orientation="Horizontal">
|
||
1309 | <telerik:RadRibbonButton VerticalAlignment="Center"
|
||
1310 | Click="ExpandButtonEvent_Click"
|
||
1311 | Tag="CLOSE"
|
||
1312 | telerik:StyleManager.Theme="Windows8"
|
||
1313 | ToolTipService.ToolTip="Expand On">
|
||
1314 | </telerik:RadRibbonButton>
|
||
1315 | |||
1316 | <telerik:RadRibbonButton VerticalAlignment="Center"
|
||
1317 | Click="ExpandButtonEvent_Click"
|
||
1318 | Tag="OPEN"
|
||
1319 | telerik:StyleManager.Theme="Windows8"
|
||
1320 | ToolTipService.ToolTip="Expand Off">
|
||
1321 | <Image Width="15"
|
||
1322 | RenderTransformOrigin="0.5,0.5">
|
||
1323 | <Image.RenderTransform>
|
||
1324 | <RotateTransform Angle="180" />
|
||
1325 | </Image.RenderTransform>
|
||
1326 | </Image>
|
||
1327 | </telerik:RadRibbonButton>
|
||
1328 | </StackPanel>-->
|
||
1329 | </Grid>
|
||
1330 | </DataTemplate>
|
||
1331 | </telerik:RadPane.TitleTemplate>
|
||
1332 | 6a19b48d | taeseongkim | <telerik:RadGridView
|
1333 | x:Name="gridViewMarkup" |
||
1334 | HorizontalContentAlignment="Center" |
||
1335 | telerik:StyleManager.Theme="Office2013" |
||
1336 | AutoExpandGroups="True" |
||
1337 | AutoGenerateColumns="False" |
||
1338 | CanUserDeleteRows="True" |
||
1339 | CanUserInsertRows="False" |
||
1340 | CanUserSortColumns="True" |
||
1341 | IsFilteringAllowed="False" |
||
1342 | 3abe8d4e | taeseongkim | IsReadOnly="False" |
1343 | MouseRightButtonDown="gridViewMarkup_MouseRightButtonDown" |
||
1344 | 6a19b48d | taeseongkim | RowIndicatorVisibility="Collapsed" |
1345 | SelectionChanged="gridViewMarkup_SelectionChanged" |
||
1346 | SelectionMode="Multiple" |
||
1347 | 3abe8d4e | taeseongkim | SelectionUnit="FullRow" |
1348 | 6a19b48d | taeseongkim | ShowGroupFooters="False" |
1349 | ShowGroupPanel="True" |
||
1350 | Sorted="GridViewMarkup_Sorted" |
||
1351 | 552af7c7 | swate0609 | Sorting="GridViewMarkup_Sorting" |
1352 | >
|
||
1353 | |||
1354 | <!-- Layer 추가 부분
|
||
1355 | CanUserInsertRows="True"
|
||
1356 | NewRowPosition="Top"
|
||
1357 | AddingNewDataItem="gridViewMarkup_AddingNewDataItem"
|
||
1358 | RowEditEnded="gridViewMarkup_RowEditEnded"
|
||
1359 | -->
|
||
1360 | |||
1361 | |||
1362 | 3abe8d4e | taeseongkim | <!-- SelectedCellsChanged="gridViewMarkup_SelectedCellsChanged" -->
|
1363 | be72bfd6 | taeseongkim | <!--<telerik:RadGridView.GroupDescriptors>
|
1364 | fddb48f7 | ljiyeon | <telerik:GroupDescriptor Member="Depatment" SortDirection="Ascending" DisplayContent = "DEPT" x:Name="gDept">
|
1365 | 5538eb5a | ljiyeon | <telerik:GroupDescriptor.AggregateFunctions>
|
1366 | <telerik:CountFunction Caption="Entries count : " />
|
||
1367 | </telerik:GroupDescriptor.AggregateFunctions>
|
||
1368 | </telerik:GroupDescriptor>
|
||
1369 | be72bfd6 | taeseongkim | </telerik:RadGridView.GroupDescriptors>-->
|
1370 | 787a4489 | KangIngu | <telerik:RadGridView.RowStyle>
|
1371 | <Style TargetType="telerik:GridViewRow"> |
||
1372 | 6a19b48d | taeseongkim | <Setter Property="HorizontalContentAlignment" Value="Center" /> |
1373 | 787a4489 | KangIngu | <Setter Property="Background" Value="{Binding Path=Consolidate, Converter={StaticResource ConsolidationBackgroudConverter}}" /> |
1374 | 6a19b48d | taeseongkim | <Setter Property="Visibility" Value="{Binding Path=IsPreviewUser, Converter={StaticResource previewerVisibleConverter}}" /> |
1375 | 787a4489 | KangIngu | <!--<Setter Property="Template" Value="{StaticResource GridViewRowTemplate}" />-->
|
1376 | </Style>
|
||
1377 | </telerik:RadGridView.RowStyle>
|
||
1378 | <telerik:RadGridView.Columns>
|
||
1379 | <telerik:GridViewSelectColumn Width="Auto"> |
||
1380 | <telerik:GridViewSelectColumn.Header>
|
||
1381 | 6a19b48d | taeseongkim | <CheckBox telerik:StyleManager.Theme="Office_Black" Click="gridViewMarkupAllSelect_Click" /> |
1382 | 787a4489 | KangIngu | </telerik:GridViewSelectColumn.Header>
|
1383 | </telerik:GridViewSelectColumn>
|
||
1384 | 3abe8d4e | taeseongkim | <telerik:GridViewDataColumn Width="Auto" Header="Color"> |
1385 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
1386 | <DataTemplate>
|
||
1387 | <Grid>
|
||
1388 | <Grid>
|
||
1389 | dbddfdd0 | taeseongkim | <!--<telerik:RadColorPicker Click="RadColorPicker_Click" SelectedColor="{Binding DisplayColor, Mode=TwoWay, Converter={StaticResource StringToColorConverter}}" />-->
|
1390 | 3abe8d4e | taeseongkim | <Border Background="{Binding DisplayColor, Converter={StaticResource StringToColorBrushConverter}}" /> |
1391 | 787a4489 | KangIngu | <TextBlock Foreground="#00000000" Text="Color" /> |
1392 | </Grid>
|
||
1393 | <Grid VerticalAlignment="Center" Visibility="{Binding AvoidConsolidate, Converter={StaticResource BoolToVisibleConverter}}"> |
||
1394 | 6a19b48d | taeseongkim | <Image
|
1395 | Height="15" |
||
1396 | Source="/KCOM;component/Resources/Images/MenuImage_New/lock_2.png" |
||
1397 | Stretch="Uniform" /> |
||
1398 | 787a4489 | KangIngu | </Grid>
|
1399 | </Grid>
|
||
1400 | |||
1401 | </DataTemplate>
|
||
1402 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1403 | dbddfdd0 | taeseongkim | <!--<telerik:GridViewDataColumn.CellEditTemplate>
|
1404 | 3abe8d4e | taeseongkim | <DataTemplate>
|
1405 | <telerik:RadColorPicker SelectedColor="{Binding DisplayColor, Mode=TwoWay, Converter={StaticResource StringToColorConverter}}" />
|
||
1406 | </DataTemplate>
|
||
1407 | dbddfdd0 | taeseongkim | </telerik:GridViewDataColumn.CellEditTemplate>-->
|
1408 | 787a4489 | KangIngu | </telerik:GridViewDataColumn>
|
1409 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
1410 | Width="Auto" |
||
1411 | DataMemberBinding="{Binding Depatment}" |
||
1412 | Header="DEPT" |
||
1413 | IsReadOnly="True"> |
||
1414 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
1415 | <DataTemplate>
|
||
1416 | 6a19b48d | taeseongkim | <TextBlock Text="{Binding Depatment}" /> |
1417 | 787a4489 | KangIngu | </DataTemplate>
|
1418 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1419 | </telerik:GridViewDataColumn>
|
||
1420 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
1421 | Width="Auto" |
||
1422 | DataMemberBinding="{Binding UserName}" |
||
1423 | Header="NAME" |
||
1424 | IsReadOnly="True"> |
||
1425 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
1426 | <DataTemplate>
|
||
1427 | 6a19b48d | taeseongkim | <TextBlock Text="{Binding UserName, Mode=TwoWay}" /> |
1428 | 787a4489 | KangIngu | </DataTemplate>
|
1429 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1430 | </telerik:GridViewDataColumn>
|
||
1431 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
1432 | Width="Auto" |
||
1433 | Header="UPDATETIME" |
||
1434 | IsReadOnly="True"> |
||
1435 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
1436 | <DataTemplate>
|
||
1437 | 6a19b48d | taeseongkim | <TextBlock Text="{Binding UpdateTime}" /> |
1438 | 787a4489 | KangIngu | </DataTemplate>
|
1439 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1440 | </telerik:GridViewDataColumn>
|
||
1441 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
1442 | Width="Auto" |
||
1443 | Header="CONSOLIDATION" |
||
1444 | IsReadOnly="True"> |
||
1445 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
1446 | <DataTemplate>
|
||
1447 | <!--<TextBlock Text="{Binding Consolidate}"/>-->
|
||
1448 | <Grid>
|
||
1449 | <Grid.ColumnDefinitions>
|
||
1450 | <ColumnDefinition Width="Auto" /> |
||
1451 | <ColumnDefinition Width="Auto" /> |
||
1452 | <ColumnDefinition Width="Auto" /> |
||
1453 | </Grid.ColumnDefinitions>
|
||
1454 | |||
1455 | 6a19b48d | taeseongkim | <TextBlock
|
1456 | Grid.Column="0" |
||
1457 | Foreground="Red" |
||
1458 | Text="{Binding AvoidConsolidate, Converter={StaticResource AvoidStringConverter}}" /> |
||
1459 | <TextBlock
|
||
1460 | Grid.Column="1" |
||
1461 | Foreground="Blue" |
||
1462 | Text="{Binding PartConsolidate, Converter={StaticResource TeamConsoliStringConverter}}" /> |
||
1463 | 787a4489 | KangIngu | <TextBlock Grid.Column="2" Text="{Binding Consolidate, Converter={StaticResource ConsoliStringConverter}}" /> |
1464 | <!--
|
||
1465 | <TextBlock HorizontalAlignment="Center" Grid.Column="2">
|
||
1466 | <TextBlock.Text>
|
||
1467 | <Binding Converter="{StaticResource ConsoliStringConverter}"/>
|
||
1468 | </TextBlock.Text>
|
||
1469 | </TextBlock>
|
||
1470 | 6a19b48d | taeseongkim | -->
|
1471 | 787a4489 | KangIngu | </Grid>
|
1472 | </DataTemplate>
|
||
1473 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1474 | </telerik:GridViewDataColumn>
|
||
1475 | c8dd192f | taeseongkim | |
1476 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
1477 | Width="Auto" |
||
1478 | Header="DELETE" |
||
1479 | IsReadOnly="True"> |
||
1480 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
1481 | <DataTemplate>
|
||
1482 | 6a19b48d | taeseongkim | <Button
|
1483 | Click="DeleteCommentEvent" |
||
1484 | CommandParameter="{Binding}" |
||
1485 | Content="DELETE" |
||
1486 | Visibility="{Binding userDelete, Converter={StaticResource BooleanToVisibilityConverter}}" /> |
||
1487 | 787a4489 | KangIngu | </DataTemplate>
|
1488 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1489 | </telerik:GridViewDataColumn>
|
||
1490 | </telerik:RadGridView.Columns>
|
||
1491 | </telerik:RadGridView>
|
||
1492 | </telerik:RadPane>
|
||
1493 | </telerik:RadPaneGroup>
|
||
1494 | 6a19b48d | taeseongkim | <telerik:RadPaneGroup
|
1495 | telerik:ProportionalStackPanel.RelativeSize="100, 100" |
||
1496 | telerik:StyleManager.Theme="Office2016" |
||
1497 | IsTabStop="False"> |
||
1498 | <telerik:RadPane
|
||
1499 | x:Name="historyPane" |
||
1500 | telerik:StyleManager.Theme="Office2016" |
||
1501 | CanFloat="False" |
||
1502 | CanUserClose="False" |
||
1503 | ContextMenuTemplate="{x:Null}" |
||
1504 | Header="Document History" |
||
1505 | Visibility="{Binding IsDocumentHistory, Source={x:Static common:ViewerDataModel.Instance}, Mode=TwoWay, Converter={StaticResource BoolToVisibleConverter}}"> |
||
1506 | 787a4489 | KangIngu | <Grid>
|
1507 | 6a19b48d | taeseongkim | <telerik:RadGridView
|
1508 | x:Name="gridViewHistory" |
||
1509 | telerik:StyleManager.Theme="Office2013" |
||
1510 | AutoExpandGroups="False" |
||
1511 | AutoGenerateColumns="False" |
||
1512 | CanUserDeleteRows="True" |
||
1513 | CanUserInsertRows="False" |
||
1514 | IsFilteringAllowed="False" |
||
1515 | IsReadOnly="True" |
||
1516 | RowIndicatorVisibility="Collapsed" |
||
1517 | ShowGroupFooters="False" |
||
1518 | ShowGroupPanel="False"> |
||
1519 | 787a4489 | KangIngu | <telerik:RadGridView.Columns>
|
1520 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
1521 | Width="Auto" |
||
1522 | Header="Slip No" |
||
1523 | IsReadOnly="True" |
||
1524 | IsVisible="{Binding IsDocumentHistory, Source={x:Static common:ViewerDataModel.Instance}, Mode=TwoWay}"> |
||
1525 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
1526 | <DataTemplate>
|
||
1527 | 6a19b48d | taeseongkim | <telerik:RadButton
|
1528 | Margin="5" |
||
1529 | Background="Transparent" |
||
1530 | BorderThickness="0" |
||
1531 | Click="EnsembleLink_Button_Click" |
||
1532 | Content="{Binding GroupNo}" |
||
1533 | Tag="{Binding EnsembleLink}" /> |
||
1534 | 787a4489 | KangIngu | </DataTemplate>
|
1535 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1536 | </telerik:GridViewDataColumn>
|
||
1537 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
1538 | Width="Auto" |
||
1539 | Header="Doc No" |
||
1540 | IsReadOnly="True"> |
||
1541 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
1542 | <DataTemplate>
|
||
1543 | 6a19b48d | taeseongkim | <TextBlock HorizontalAlignment="Center" Text="{Binding DocNo}" /> |
1544 | c91f45f3 | djkim | </DataTemplate>
|
1545 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1546 | </telerik:GridViewDataColumn>
|
||
1547 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
1548 | Width="Auto" |
||
1549 | Header="Rev No" |
||
1550 | IsReadOnly="True"> |
||
1551 | c91f45f3 | djkim | <telerik:GridViewDataColumn.CellTemplate>
|
1552 | <DataTemplate>
|
||
1553 | 6a19b48d | taeseongkim | <TextBlock HorizontalAlignment="Center" Text="{Binding RevNo}" /> |
1554 | 787a4489 | KangIngu | </DataTemplate>
|
1555 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1556 | </telerik:GridViewDataColumn>
|
||
1557 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
1558 | Width="Auto" |
||
1559 | Header="RESULT" |
||
1560 | IsReadOnly="True" |
||
1561 | IsVisible="{Binding IsDocumentHistory, Source={x:Static common:ViewerDataModel.Instance}, Mode=TwoWay}"> |
||
1562 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
1563 | <DataTemplate>
|
||
1564 | 6a19b48d | taeseongkim | <TextBlock HorizontalAlignment="Center" Text="{Binding RESULT}" /> |
1565 | 787a4489 | KangIngu | </DataTemplate>
|
1566 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1567 | </telerik:GridViewDataColumn>
|
||
1568 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
1569 | telerik:StyleManager.Theme="Office2013" |
||
1570 | CellStyle="{StaticResource GridViewAlign}" |
||
1571 | DataMemberBinding="{Binding FROM_VENDOR}" |
||
1572 | Header="File(in)" |
||
1573 | HeaderTextAlignment="Center" |
||
1574 | IsReadOnly="True" |
||
1575 | IsVisible="{Binding IsDocumentHistory, Source={x:Static common:ViewerDataModel.Instance}, Mode=TwoWay}"> |
||
1576 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
1577 | <DataTemplate>
|
||
1578 | 6a19b48d | taeseongkim | <Image
|
1579 | Height="22" |
||
1580 | MouseLeftButtonDown="PdfLink_ButtonDown" |
||
1581 | Source="/KCOM;component/Resources/Images/MenuImage_New/PDF.png" |
||
1582 | Tag="{Binding FROM_VENDOR}" |
||
1583 | 38d69491 | taeseongkim | Visibility="{Binding FROM_VENDOR, Converter={StaticResource NullToCollapsedConverter}}" /> |
1584 | 787a4489 | KangIngu | </DataTemplate>
|
1585 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1586 | </telerik:GridViewDataColumn>
|
||
1587 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
1588 | telerik:StyleManager.Theme="Office2013" |
||
1589 | CellStyle="{StaticResource GridViewAlign}" |
||
1590 | DataMemberBinding="{Binding TO_VENDOR}" |
||
1591 | Header="File(out)" |
||
1592 | HeaderTextAlignment="Center" |
||
1593 | IsReadOnly="True" |
||
1594 | IsVisible="{Binding IsDocumentHistory, Source={x:Static common:ViewerDataModel.Instance}, Mode=TwoWay}"> |
||
1595 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
1596 | <DataTemplate>
|
||
1597 | 6a19b48d | taeseongkim | <Image
|
1598 | Height="22" |
||
1599 | MouseLeftButtonDown="PdfLink_ButtonDown" |
||
1600 | Source="/KCOM;component/Resources/Images/MenuImage_New/PDF.png" |
||
1601 | Tag="{Binding TO_VENDOR}" |
||
1602 | 38d69491 | taeseongkim | Visibility="{Binding TO_VENDOR, Converter={StaticResource NullToCollapsedConverter}}" /> |
1603 | 787a4489 | KangIngu | </DataTemplate>
|
1604 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1605 | </telerik:GridViewDataColumn>
|
||
1606 | |||
1607 | |||
1608 | <!--<telerik:GridViewDataColumn Header="FROM_VENDOR" IsReadOnly="True" Width="Auto">
|
||
1609 | <telerik:GridViewDataColumn.CellTemplate>
|
||
1610 | <DataTemplate>
|
||
1611 | <telerik:RadRibbonButton telerik:StyleManager.Theme="Office2016">
|
||
1612 | <
|
||
1613 | <TextBlock Text="{Binding FROM_VENDOR}" HorizontalAlignment="Center"/>
|
||
1614 | 6a19b48d | taeseongkim | </telerik:RadRibbonButton>
|
1615 | 787a4489 | KangIngu | </DataTemplate>
|
1616 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1617 | </telerik:GridViewDataColumn>-->
|
||
1618 | <!--<telerik:GridViewDataColumn Header="TO_VENDOR" IsReadOnly="True" Width="Auto">
|
||
1619 | <telerik:GridViewDataColumn.CellTemplate>
|
||
1620 | <DataTemplate>
|
||
1621 | <TextBlock Text="{Binding TO_VENDOR}" HorizontalAlignment="Center"/>
|
||
1622 | </DataTemplate>
|
||
1623 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1624 | </telerik:GridViewDataColumn>-->
|
||
1625 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
1626 | Width="Auto" |
||
1627 | CellStyle="{StaticResource GridViewAlign}" |
||
1628 | Header="SYNC" |
||
1629 | HeaderTextAlignment="Center" |
||
1630 | IsReadOnly="True"> |
||
1631 | 787a4489 | KangIngu | <telerik:GridViewDataColumn.CellTemplate>
|
1632 | <DataTemplate>
|
||
1633 | <!--<Border Grid.Column="1" Background="#FF0054B9" CornerRadius="5" Margin="5" VerticalAlignment="Center" MinHeight="20"
|
||
1634 | Visibility="{Binding IsSyncPossible, Converter={StaticResource BoolToVisibleConverter}}">
|
||
1635 | <telerik:RadButton Content="OPEN" telerik:StyleManager.Theme="Office2016" Foreground="White"
|
||
1636 | Background="Transparent" HorizontalAlignment="Stretch" Click="RadButton_Click" CommandParameter="{Binding}"/>
|
||
1637 | </Border>-->
|
||
1638 | 6a19b48d | taeseongkim | <telerik:RadButton
|
1639 | Margin="5" |
||
1640 | Background="Transparent" |
||
1641 | BorderThickness="0" |
||
1642 | Click="btnSync_Click" |
||
1643 | CommandParameter="{Binding}" |
||
1644 | Visibility="{Binding IsSyncPossible, Converter={StaticResource BoolToVisibleConverter}}"> |
||
1645 | 787a4489 | KangIngu | <telerik:RadButton.Content>
|
1646 | 6a19b48d | taeseongkim | <Image
|
1647 | Width="20" |
||
1648 | Height="20" |
||
1649 | Source="/KCOM;component/Resources/Images/MenuImage_new/file.png" |
||
1650 | Stretch="Uniform" /> |
||
1651 | 787a4489 | KangIngu | </telerik:RadButton.Content>
|
1652 | </telerik:RadButton>
|
||
1653 | |||
1654 | <!--<TextBlock Text="{Binding IsSyncPossible}" HorizontalAlignment="Center"/>-->
|
||
1655 | </DataTemplate>
|
||
1656 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1657 | </telerik:GridViewDataColumn>
|
||
1658 | 6a19b48d | taeseongkim | <telerik:GridViewDataColumn
|
1659 | telerik:StyleManager.Theme="Office2013" |
||
1660 | CellStyle="{StaticResource GridViewAlign}" |
||
1661 | DataMemberBinding="{Binding EnsembleLink}" |
||
1662 | Header="Attachments" |
||
1663 | HeaderTextAlignment="Center" |
||
1664 | IsReadOnly="True" |
||
1665 | IsVisible="{Binding IsDocumentHistory, Source={x:Static common:ViewerDataModel.Instance}, Mode=TwoWay}"> |
||
1666 | 94b7c12c | djkim | <telerik:GridViewDataColumn.CellTemplate>
|
1667 | <DataTemplate>
|
||
1668 | 6a19b48d | taeseongkim | <telerik:RadButton
|
1669 | Margin="5" |
||
1670 | Background="Transparent" |
||
1671 | BorderThickness="0" |
||
1672 | Click="EnsembleLink_Button_Click" |
||
1673 | Content="Link" |
||
1674 | Tag="{Binding EnsembleLink}" /> |
||
1675 | 94b7c12c | djkim | </DataTemplate>
|
1676 | </telerik:GridViewDataColumn.CellTemplate>
|
||
1677 | </telerik:GridViewDataColumn>
|
||
1678 | 787a4489 | KangIngu | </telerik:RadGridView.Columns>
|
1679 | </telerik:RadGridView>
|
||
1680 | 6a19b48d | taeseongkim | <telerik:RadBusyIndicator
|
1681 | x:Name="gridViewHistory_Busy" |
||
1682 | telerik:StyleManager.Theme="Office2016" |
||
1683 | BusyContent="Sync Data Loading" |
||
1684 | IsBusy="False" /> |
||
1685 | 787a4489 | KangIngu | </Grid>
|
1686 | </telerik:RadPane>
|
||
1687 | </telerik:RadPaneGroup>
|
||
1688 | </telerik:RadSplitContainer>
|
||
1689 | |||
1690 | |||
1691 | </telerik:RadDocking>
|
||
1692 | </Grid>
|
||
1693 | </UserControl> |