markus / KCOM / Controls / Sample.xaml @ 43e1d368
이력 | 보기 | 이력해설 | 다운로드 (58.3 KB)
1 |
<UserControl
|
---|---|
2 |
x:Class="KCOM.Controls.Sample" |
3 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
4 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
5 |
xmlns:System="clr-namespace:System;assembly=mscorlib" |
6 |
xmlns:common="clr-namespace:KCOM.Common" |
7 |
xmlns:controls="clr-namespace:KCOM.Controls" |
8 |
xmlns:converter="clr-namespace:KCOM.Common.Converter" |
9 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
10 |
xmlns:local="clr-namespace:KCOM.Controls" |
11 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
12 |
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
13 |
x:Name="userControl" |
14 |
d:DesignHeight="600" |
15 |
d:DesignWidth="200" |
16 |
AllowDrop="False" |
17 |
Background="#f5f5f5" |
18 |
mc:Ignorable="d"> |
19 |
<UserControl.Resources>
|
20 |
<converter:ColorListToBrushConverter x:Key="ColorListToBrushConverter" /> |
21 |
<converter:CommentTypeImgConverter x:Key="converterTypeImageConverter" /> |
22 |
<converter:MarkupDataToConverter x:Key="markupDataConverter" /> |
23 |
<converter:MarginCorrectionConverter x:Key="marginConverter" /> |
24 |
<SolidColorBrush x:Key="ListTextSelectedColor" x:Shared="False" /> |
25 |
<SolidColorBrush x:Key="ListSelectedColor" x:Shared="False" /> |
26 |
<Style x:Key="ItemContainerStyle" TargetType="{x:Type telerik:RadListBoxItem}"> |
27 |
<Setter Property="HorizontalContentAlignment" Value="Stretch" /> |
28 |
<Setter Property="Template"> |
29 |
<Setter.Value>
|
30 |
<ControlTemplate TargetType="{x:Type telerik:RadListBoxItem}"> |
31 |
<Grid VerticalAlignment="Stretch"> |
32 |
<Border
|
33 |
x:Name="myBorder" |
34 |
Margin="0" |
35 |
Padding="0" |
36 |
VerticalAlignment="Center" |
37 |
SnapsToDevicePixels="True"> |
38 |
<Border.Style>
|
39 |
<Style TargetType="{x:Type Border}"> |
40 |
<Setter Property="BorderThickness" Value="3,3,3,3" /> |
41 |
<Setter Property="BorderBrush" Value="Transparent" /> |
42 |
</Style>
|
43 |
</Border.Style>
|
44 |
<ContentPresenter Margin="2" /> |
45 |
</Border>
|
46 |
</Grid>
|
47 |
<ControlTemplate.Triggers>
|
48 |
<Trigger Property="IsSelected" Value="true"> |
49 |
<Setter TargetName="myBorder" Property="BorderBrush" Value="{DynamicResource KCOMColor_AccentBrush}" /> |
50 |
</Trigger>
|
51 |
</ControlTemplate.Triggers>
|
52 |
</ControlTemplate>
|
53 |
</Setter.Value>
|
54 |
</Setter>
|
55 |
<!--<Style.Triggers>
|
56 |
<DataTrigger Binding="{Binding Visible}" Value="Collapsed">
|
57 |
<Setter Property="Visibility" Value="Collapsed"/>
|
58 |
</DataTrigger>
|
59 |
</Style.Triggers>-->
|
60 |
</Style>
|
61 |
<ControlTemplate x:Key="RadExpanderControlTemplate1" TargetType="{x:Type telerik:RadExpander}"> |
62 |
<Grid HorizontalAlignment="{TemplateBinding HorizontalAlignment}" VerticalAlignment="{TemplateBinding VerticalAlignment}"> |
63 |
<Border Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}"> |
64 |
<Grid>
|
65 |
<Grid.RowDefinitions>
|
66 |
<RowDefinition x:Name="row0" Height="Auto" /> |
67 |
<RowDefinition x:Name="row1" Height="Auto" /> |
68 |
</Grid.RowDefinitions>
|
69 |
<Grid.ColumnDefinitions>
|
70 |
<ColumnDefinition x:Name="col0" Width="Auto" /> |
71 |
<ColumnDefinition x:Name="col1" Width="Auto" /> |
72 |
</Grid.ColumnDefinitions>
|
73 |
|
74 |
<telerik:RadToggleButton
|
75 |
x:Name="HeaderButton" |
76 |
Padding="{TemplateBinding Padding}" |
77 |
HorizontalAlignment="{TemplateBinding HorizontalHeaderAlignment}" |
78 |
VerticalAlignment="{TemplateBinding VerticalHeaderAlignment}" |
79 |
HorizontalContentAlignment="{TemplateBinding HorizontalHeaderAlignment}" |
80 |
VerticalContentAlignment="{TemplateBinding VerticalHeaderAlignment}" |
81 |
Background="Transparent" |
82 |
ClickMode="{TemplateBinding ClickMode}" |
83 |
FontFamily="{TemplateBinding FontFamily}" |
84 |
FontSize="{TemplateBinding FontSize}" |
85 |
FontStretch="{TemplateBinding FontStretch}" |
86 |
FontStyle="{TemplateBinding FontStyle}" |
87 |
FontWeight="{TemplateBinding FontWeight}" |
88 |
Foreground="{TemplateBinding Foreground}" |
89 |
IsChecked="{Binding IsExpanded, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}" |
90 |
IsTabStop="{TemplateBinding IsTabStop}" |
91 |
TabIndex="{TemplateBinding TabIndex}" |
92 |
Template="{StaticResource ToggleTemplate}"> |
93 |
|
94 |
<Grid x:Name="HeaderPanel" Background="Transparent"> |
95 |
<Grid.RowDefinitions>
|
96 |
<RowDefinition Height="Auto" /> |
97 |
<RowDefinition Height="*" /> |
98 |
</Grid.RowDefinitions>
|
99 |
<Grid.ColumnDefinitions>
|
100 |
<ColumnDefinition Width="Auto" /> |
101 |
<ColumnDefinition Width="*" /> |
102 |
</Grid.ColumnDefinitions>
|
103 |
|
104 |
<Grid
|
105 |
Grid.Row="0" |
106 |
Grid.Column="0" |
107 |
HorizontalAlignment="Left"> |
108 |
<Ellipse
|
109 |
x:Name="OuterCircle" |
110 |
Width="13" |
111 |
Height="13" |
112 |
HorizontalAlignment="Center" |
113 |
VerticalAlignment="Center" |
114 |
Fill="{StaticResource ControlBackground}" |
115 |
Stroke="#FFD6D4D4" /> |
116 |
<Ellipse
|
117 |
x:Name="InnerCircle" |
118 |
Width="11" |
119 |
Height="11" |
120 |
Margin="1,2" |
121 |
Stroke="{StaticResource ControlInnerBorder_Normal}" /> |
122 |
|
123 |
<Grid
|
124 |
x:Name="arrowPanel" |
125 |
Width="7" |
126 |
Height="4" |
127 |
RenderTransformOrigin=".5 .5"> |
128 |
<Grid.RenderTransform>
|
129 |
<RotateTransform /> |
130 |
</Grid.RenderTransform>
|
131 |
<Path
|
132 |
x:Name="arrow" |
133 |
Data="M0,0 L0.67,0 4,2.67 7.25,0 8,0 8,0.67 4,4 0,0.75 z" |
134 |
Fill="#FF25A0DA" |
135 |
RenderTransformOrigin="0.5,0.5" |
136 |
Stretch="Fill"> |
137 |
<Path.RenderTransform>
|
138 |
<RotateTransform Angle="0" /> |
139 |
</Path.RenderTransform>
|
140 |
</Path>
|
141 |
</Grid>
|
142 |
</Grid>
|
143 |
<telerik:LayoutTransformControl
|
144 |
x:Name="HeaderContentTransform" |
145 |
Grid.Row="0" |
146 |
Grid.Column="0" |
147 |
RenderTransformOrigin=".5 .5"> |
148 |
<ContentPresenter
|
149 |
x:Name="HeaderContent" |
150 |
Grid.Column="1" |
151 |
Margin="3,0,0,0" |
152 |
HorizontalAlignment="Stretch" |
153 |
VerticalAlignment="Stretch" |
154 |
Content="{TemplateBinding Header}" |
155 |
ContentTemplate="{TemplateBinding HeaderTemplate}" /> |
156 |
</telerik:LayoutTransformControl>
|
157 |
|
158 |
</Grid>
|
159 |
</telerik:RadToggleButton>
|
160 |
|
161 |
<ContentPresenter
|
162 |
x:Name="Content" |
163 |
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" |
164 |
VerticalAlignment="{TemplateBinding VerticalContentAlignment}" |
165 |
Content="{TemplateBinding Content}" |
166 |
ContentTemplate="{TemplateBinding ContentTemplate}" |
167 |
Visibility="Collapsed" /> |
168 |
</Grid>
|
169 |
</Border>
|
170 |
<VisualStateManager.VisualStateGroups>
|
171 |
<VisualStateGroup x:Name="CommonStateGroup"> |
172 |
<VisualState x:Name="Normal" /> |
173 |
<VisualState x:Name="Disabled"> |
174 |
<Storyboard>
|
175 |
<ObjectAnimationUsingKeyFrames
|
176 |
Storyboard.TargetName="InnerCircle" |
177 |
Storyboard.TargetProperty="Stroke" |
178 |
Duration="0:0:0"> |
179 |
<DiscreteObjectKeyFrame KeyTime="0:0:0" Value="{StaticResource ControlInnerBorder_Disabled}" /> |
180 |
</ObjectAnimationUsingKeyFrames>
|
181 |
<DoubleAnimation
|
182 |
Storyboard.TargetName="Content" |
183 |
Storyboard.TargetProperty="Opacity" |
184 |
To=".5" /> |
185 |
<DoubleAnimation
|
186 |
Storyboard.TargetName="HeaderContent" |
187 |
Storyboard.TargetProperty="Opacity" |
188 |
To=".5" /> |
189 |
</Storyboard>
|
190 |
</VisualState>
|
191 |
</VisualStateGroup>
|
192 |
<VisualStateGroup x:Name="HeaderStateGroup"> |
193 |
<VisualState x:Name="NormalHeader" /> |
194 |
<VisualState x:Name="MouseOverHeader"> |
195 |
<Storyboard>
|
196 |
<ObjectAnimationUsingKeyFrames
|
197 |
Storyboard.TargetName="InnerCircle" |
198 |
Storyboard.TargetProperty="Stroke" |
199 |
Duration="0:0:0"> |
200 |
<DiscreteObjectKeyFrame KeyTime="0:0:0" Value="{StaticResource ControlInnerBorder_MouseOver}" /> |
201 |
</ObjectAnimationUsingKeyFrames>
|
202 |
</Storyboard>
|
203 |
</VisualState>
|
204 |
<VisualState x:Name="PressedHeader"> |
205 |
<Storyboard>
|
206 |
<ObjectAnimationUsingKeyFrames
|
207 |
Storyboard.TargetName="InnerCircle" |
208 |
Storyboard.TargetProperty="Stroke" |
209 |
Duration="0:0:0"> |
210 |
<DiscreteObjectKeyFrame KeyTime="0:0:0" Value="{StaticResource ControlInnerBorder_Pressed}" /> |
211 |
</ObjectAnimationUsingKeyFrames>
|
212 |
</Storyboard>
|
213 |
</VisualState>
|
214 |
</VisualStateGroup>
|
215 |
<VisualStateGroup x:Name="HeaderOrientationGroup"> |
216 |
<VisualState x:Name="HorizontalOrientation"> |
217 |
<Storyboard>
|
218 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderContentTransform" Storyboard.TargetProperty="LayoutTransform"> |
219 |
<DiscreteObjectKeyFrame KeyTime="0"> |
220 |
<DiscreteObjectKeyFrame.Value>
|
221 |
<RotateTransform Angle="0" /> |
222 |
</DiscreteObjectKeyFrame.Value>
|
223 |
</DiscreteObjectKeyFrame>
|
224 |
</ObjectAnimationUsingKeyFrames>
|
225 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderContentTransform" Storyboard.TargetProperty="(Grid.Column)"> |
226 |
<DiscreteObjectKeyFrame KeyTime="0"> |
227 |
<DiscreteObjectKeyFrame.Value>
|
228 |
<System:Int32>1</System:Int32> |
229 |
</DiscreteObjectKeyFrame.Value>
|
230 |
</DiscreteObjectKeyFrame>
|
231 |
</ObjectAnimationUsingKeyFrames>
|
232 |
</Storyboard>
|
233 |
</VisualState>
|
234 |
<VisualState x:Name="VerticalOrientation"> |
235 |
<Storyboard>
|
236 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderContentTransform" Storyboard.TargetProperty="LayoutTransform"> |
237 |
<DiscreteObjectKeyFrame KeyTime="0"> |
238 |
<DiscreteObjectKeyFrame.Value>
|
239 |
<RotateTransform Angle="90" /> |
240 |
</DiscreteObjectKeyFrame.Value>
|
241 |
</DiscreteObjectKeyFrame>
|
242 |
</ObjectAnimationUsingKeyFrames>
|
243 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderContentTransform" Storyboard.TargetProperty="(Grid.Row)"> |
244 |
<DiscreteObjectKeyFrame KeyTime="0"> |
245 |
<DiscreteObjectKeyFrame.Value>
|
246 |
<System:Int32>1</System:Int32> |
247 |
</DiscreteObjectKeyFrame.Value>
|
248 |
</DiscreteObjectKeyFrame>
|
249 |
</ObjectAnimationUsingKeyFrames>
|
250 |
</Storyboard>
|
251 |
</VisualState>
|
252 |
</VisualStateGroup>
|
253 |
<VisualStateGroup x:Name="ExpandStateGroup"> |
254 |
<VisualState x:Name="Expanded"> |
255 |
<Storyboard>
|
256 |
<DoubleAnimation
|
257 |
Storyboard.TargetName="arrow" |
258 |
Storyboard.TargetProperty="(UIElement.RenderTransform).Angle" |
259 |
To="180" |
260 |
Duration="0:0:0.2" /> |
261 |
<ColorAnimation
|
262 |
Storyboard.TargetName="OuterCircle" |
263 |
Storyboard.TargetProperty="(Shape.Stroke).(SolidColorBrush.Color)" |
264 |
To="#FF1FA3EB" |
265 |
Duration="0" /> |
266 |
</Storyboard>
|
267 |
</VisualState>
|
268 |
<VisualState x:Name="Collapsed"> |
269 |
<Storyboard>
|
270 |
<DoubleAnimation
|
271 |
Storyboard.TargetName="arrow" |
272 |
Storyboard.TargetProperty="(UIElement.RenderTransform).Angle" |
273 |
To="0" |
274 |
Duration="0:0:0.2" /> |
275 |
</Storyboard>
|
276 |
</VisualState>
|
277 |
</VisualStateGroup>
|
278 |
<VisualStateGroup x:Name="ExpandDirectionStates"> |
279 |
<VisualStateGroup.Transitions>
|
280 |
<VisualTransition>
|
281 |
<Storyboard>
|
282 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Content" Storyboard.TargetProperty="(Grid.Row)"> |
283 |
<DiscreteObjectKeyFrame KeyTime="0"> |
284 |
<DiscreteObjectKeyFrame.Value>
|
285 |
<System:Int32>0</System:Int32> |
286 |
</DiscreteObjectKeyFrame.Value>
|
287 |
</DiscreteObjectKeyFrame>
|
288 |
</ObjectAnimationUsingKeyFrames>
|
289 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Content" Storyboard.TargetProperty="(Grid.Column)"> |
290 |
<DiscreteObjectKeyFrame KeyTime="0"> |
291 |
<DiscreteObjectKeyFrame.Value>
|
292 |
<System:Int32>0</System:Int32> |
293 |
</DiscreteObjectKeyFrame.Value>
|
294 |
</DiscreteObjectKeyFrame>
|
295 |
</ObjectAnimationUsingKeyFrames>
|
296 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderButton" Storyboard.TargetProperty="(Grid.Row)"> |
297 |
<DiscreteObjectKeyFrame KeyTime="0"> |
298 |
<DiscreteObjectKeyFrame.Value>
|
299 |
<System:Int32>0</System:Int32> |
300 |
</DiscreteObjectKeyFrame.Value>
|
301 |
</DiscreteObjectKeyFrame>
|
302 |
</ObjectAnimationUsingKeyFrames>
|
303 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderButton" Storyboard.TargetProperty="(Grid.Column)"> |
304 |
<DiscreteObjectKeyFrame KeyTime="0"> |
305 |
<DiscreteObjectKeyFrame.Value>
|
306 |
<System:Int32>0</System:Int32> |
307 |
</DiscreteObjectKeyFrame.Value>
|
308 |
</DiscreteObjectKeyFrame>
|
309 |
</ObjectAnimationUsingKeyFrames>
|
310 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="col0" Storyboard.TargetProperty="Width"> |
311 |
<DiscreteObjectKeyFrame KeyTime="0"> |
312 |
<DiscreteObjectKeyFrame.Value>
|
313 |
<GridLength>Auto</GridLength> |
314 |
</DiscreteObjectKeyFrame.Value>
|
315 |
</DiscreteObjectKeyFrame>
|
316 |
</ObjectAnimationUsingKeyFrames>
|
317 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="col1" Storyboard.TargetProperty="Width"> |
318 |
<DiscreteObjectKeyFrame KeyTime="0"> |
319 |
<DiscreteObjectKeyFrame.Value>
|
320 |
<GridLength>Auto</GridLength> |
321 |
</DiscreteObjectKeyFrame.Value>
|
322 |
</DiscreteObjectKeyFrame>
|
323 |
</ObjectAnimationUsingKeyFrames>
|
324 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="row0" Storyboard.TargetProperty="Height"> |
325 |
<DiscreteObjectKeyFrame KeyTime="0"> |
326 |
<DiscreteObjectKeyFrame.Value>
|
327 |
<GridLength>Auto</GridLength> |
328 |
</DiscreteObjectKeyFrame.Value>
|
329 |
</DiscreteObjectKeyFrame>
|
330 |
</ObjectAnimationUsingKeyFrames>
|
331 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="row1" Storyboard.TargetProperty="Height"> |
332 |
<DiscreteObjectKeyFrame KeyTime="0"> |
333 |
<DiscreteObjectKeyFrame.Value>
|
334 |
<GridLength>Auto</GridLength> |
335 |
</DiscreteObjectKeyFrame.Value>
|
336 |
</DiscreteObjectKeyFrame>
|
337 |
</ObjectAnimationUsingKeyFrames>
|
338 |
</Storyboard>
|
339 |
</VisualTransition>
|
340 |
</VisualStateGroup.Transitions>
|
341 |
<VisualState x:Name="DirectionLeft"> |
342 |
<Storyboard>
|
343 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="col0" Storyboard.TargetProperty="Width"> |
344 |
<DiscreteObjectKeyFrame KeyTime="0"> |
345 |
<DiscreteObjectKeyFrame.Value>
|
346 |
<GridLength>*</GridLength> |
347 |
</DiscreteObjectKeyFrame.Value>
|
348 |
</DiscreteObjectKeyFrame>
|
349 |
</ObjectAnimationUsingKeyFrames>
|
350 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="row0" Storyboard.TargetProperty="Height"> |
351 |
<DiscreteObjectKeyFrame KeyTime="0"> |
352 |
<DiscreteObjectKeyFrame.Value>
|
353 |
<GridLength>*</GridLength> |
354 |
</DiscreteObjectKeyFrame.Value>
|
355 |
</DiscreteObjectKeyFrame>
|
356 |
</ObjectAnimationUsingKeyFrames>
|
357 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderButton" Storyboard.TargetProperty="(Grid.Column)"> |
358 |
<DiscreteObjectKeyFrame KeyTime="0"> |
359 |
<DiscreteObjectKeyFrame.Value>
|
360 |
<System:Int32>1</System:Int32> |
361 |
</DiscreteObjectKeyFrame.Value>
|
362 |
</DiscreteObjectKeyFrame>
|
363 |
</ObjectAnimationUsingKeyFrames>
|
364 |
<DoubleAnimation
|
365 |
Storyboard.TargetName="arrowPanel" |
366 |
Storyboard.TargetProperty="(UIElement.RenderTransform).Angle" |
367 |
To="90" |
368 |
Duration="0:0:0" /> |
369 |
</Storyboard>
|
370 |
</VisualState>
|
371 |
<VisualState x:Name="DirectionRight"> |
372 |
<Storyboard>
|
373 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="col1" Storyboard.TargetProperty="Width"> |
374 |
<DiscreteObjectKeyFrame KeyTime="0"> |
375 |
<DiscreteObjectKeyFrame.Value>
|
376 |
<GridLength>*</GridLength> |
377 |
</DiscreteObjectKeyFrame.Value>
|
378 |
</DiscreteObjectKeyFrame>
|
379 |
</ObjectAnimationUsingKeyFrames>
|
380 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="row0" Storyboard.TargetProperty="Height"> |
381 |
<DiscreteObjectKeyFrame KeyTime="0"> |
382 |
<DiscreteObjectKeyFrame.Value>
|
383 |
<GridLength>*</GridLength> |
384 |
</DiscreteObjectKeyFrame.Value>
|
385 |
</DiscreteObjectKeyFrame>
|
386 |
</ObjectAnimationUsingKeyFrames>
|
387 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Content" Storyboard.TargetProperty="(Grid.Column)"> |
388 |
<DiscreteObjectKeyFrame KeyTime="0"> |
389 |
<DiscreteObjectKeyFrame.Value>
|
390 |
<System:Int32>1</System:Int32> |
391 |
</DiscreteObjectKeyFrame.Value>
|
392 |
</DiscreteObjectKeyFrame>
|
393 |
</ObjectAnimationUsingKeyFrames>
|
394 |
<DoubleAnimation
|
395 |
Storyboard.TargetName="arrowPanel" |
396 |
Storyboard.TargetProperty="(UIElement.RenderTransform).Angle" |
397 |
To="-90" |
398 |
Duration="0:0:0" /> |
399 |
</Storyboard>
|
400 |
</VisualState>
|
401 |
<VisualState x:Name="DirectionUp"> |
402 |
<Storyboard>
|
403 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="col0" Storyboard.TargetProperty="Width"> |
404 |
<DiscreteObjectKeyFrame KeyTime="0"> |
405 |
<DiscreteObjectKeyFrame.Value>
|
406 |
<GridLength>*</GridLength> |
407 |
</DiscreteObjectKeyFrame.Value>
|
408 |
</DiscreteObjectKeyFrame>
|
409 |
</ObjectAnimationUsingKeyFrames>
|
410 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="row0" Storyboard.TargetProperty="Height"> |
411 |
<DiscreteObjectKeyFrame KeyTime="0"> |
412 |
<DiscreteObjectKeyFrame.Value>
|
413 |
<GridLength>*</GridLength> |
414 |
</DiscreteObjectKeyFrame.Value>
|
415 |
</DiscreteObjectKeyFrame>
|
416 |
</ObjectAnimationUsingKeyFrames>
|
417 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderButton" Storyboard.TargetProperty="(Grid.Row)"> |
418 |
<DiscreteObjectKeyFrame KeyTime="0"> |
419 |
<DiscreteObjectKeyFrame.Value>
|
420 |
<System:Int32>1</System:Int32> |
421 |
</DiscreteObjectKeyFrame.Value>
|
422 |
</DiscreteObjectKeyFrame>
|
423 |
</ObjectAnimationUsingKeyFrames>
|
424 |
<DoubleAnimation
|
425 |
Storyboard.TargetName="arrowPanel" |
426 |
Storyboard.TargetProperty="(UIElement.RenderTransform).Angle" |
427 |
To="180" |
428 |
Duration="0:0:0" /> |
429 |
</Storyboard>
|
430 |
</VisualState>
|
431 |
<VisualState x:Name="DirectionDown"> |
432 |
<Storyboard>
|
433 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="col0" Storyboard.TargetProperty="Width"> |
434 |
<DiscreteObjectKeyFrame KeyTime="0"> |
435 |
<DiscreteObjectKeyFrame.Value>
|
436 |
<GridLength>*</GridLength> |
437 |
</DiscreteObjectKeyFrame.Value>
|
438 |
</DiscreteObjectKeyFrame>
|
439 |
</ObjectAnimationUsingKeyFrames>
|
440 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="row1" Storyboard.TargetProperty="Height"> |
441 |
<DiscreteObjectKeyFrame KeyTime="0"> |
442 |
<DiscreteObjectKeyFrame.Value>
|
443 |
<GridLength>*</GridLength> |
444 |
</DiscreteObjectKeyFrame.Value>
|
445 |
</DiscreteObjectKeyFrame>
|
446 |
</ObjectAnimationUsingKeyFrames>
|
447 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Content" Storyboard.TargetProperty="(Grid.Row)"> |
448 |
<DiscreteObjectKeyFrame KeyTime="0"> |
449 |
<DiscreteObjectKeyFrame.Value>
|
450 |
<System:Int32>1</System:Int32> |
451 |
</DiscreteObjectKeyFrame.Value>
|
452 |
</DiscreteObjectKeyFrame>
|
453 |
</ObjectAnimationUsingKeyFrames>
|
454 |
</Storyboard>
|
455 |
</VisualState>
|
456 |
</VisualStateGroup>
|
457 |
</VisualStateManager.VisualStateGroups>
|
458 |
</Grid>
|
459 |
</ControlTemplate>
|
460 |
<DataTemplate x:Key="CommentSelectTemplate"> |
461 |
<CheckBox
|
462 |
telerik:StyleManager.Theme="Windows8" |
463 |
Command="{Binding SelectCommentCommand, ElementName=userControl, Mode=OneWay}" |
464 |
IsChecked="{Binding IsSelected, Mode=TwoWay}"> |
465 |
<StackPanel Orientation="Horizontal"> |
466 |
<TextBlock Text="{Binding Depart}" /> |
467 |
<TextBlock Text="/" /> |
468 |
<TextBlock Text="{Binding UserName}" /> |
469 |
</StackPanel>
|
470 |
</CheckBox>
|
471 |
</DataTemplate>
|
472 |
</UserControl.Resources>
|
473 |
<Grid x:Name="grid" VerticalAlignment="Stretch"> |
474 |
<!--<TextBlock Text="Sort By:" Foreground="{DynamicResource KCOMColor_MarkerBrush}"/>-->
|
475 |
<telerik:RadTabControl
|
476 |
Name="navigationTab" |
477 |
Margin="0,6,0,0" |
478 |
HorizontalAlignment="Stretch" |
479 |
HorizontalContentAlignment="Stretch" |
480 |
telerik:StyleManager.Theme="VisualStudio2013" |
481 |
BorderThickness="0" |
482 |
FontSize="10" |
483 |
HeaderBackground="#f5f5f5" |
484 |
ScrollViewer.HorizontalScrollBarVisibility="Disabled" |
485 |
SelectedIndex="0"> |
486 |
|
487 |
<telerik:RadTabItem
|
488 |
FontSize="12" |
489 |
Header="Thumbnail" |
490 |
HeaderForeground="{DynamicResource KCOMColor_MarkerBrush}"> |
491 |
<Grid>
|
492 |
<Grid.RowDefinitions>
|
493 |
<RowDefinition Height="Auto" /> |
494 |
<RowDefinition Height="Auto" /> |
495 |
<RowDefinition Height="*" /> |
496 |
</Grid.RowDefinitions>
|
497 |
<telerik:RadPathButton
|
498 |
x:Name="btnPanorama" |
499 |
Width="120" |
500 |
Height="24" |
501 |
Margin="2" |
502 |
HorizontalAlignment="Right" |
503 |
telerik:StyleManager.Theme="Office2016" |
504 |
Background="#FF0054B9" |
505 |
Click="btnPanorama_Click" |
506 |
Content="Show All Pages" |
507 |
ContentPlacement="Left" |
508 |
CornerRadius="3" |
509 |
Foreground="White" |
510 |
PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphGrid}, |
511 |
Foreground=White}"
|
512 |
PathStyle="{StaticResource PathButtonStyle}" /> |
513 |
<Border
|
514 |
Grid.Row="1" |
515 |
Margin="1" |
516 |
Background="White" |
517 |
BorderBrush="#FFC9C9C9" |
518 |
BorderThickness="1"> |
519 |
<StackPanel>
|
520 |
<RadioButton
|
521 |
x:Name="rdoAllPages" |
522 |
Margin="5,3" |
523 |
telerik:StyleManager.Theme="Office2013" |
524 |
Checked="ShowPageChange" |
525 |
Content="All Pages" |
526 |
FontSize="10" |
527 |
GroupName="grpPages" |
528 |
IsChecked="True" /> |
529 |
<RadioButton
|
530 |
x:Name="rdoFavoritePages" |
531 |
Margin="5,3" |
532 |
Checked="ShowPageChange" |
533 |
Content="Favorited Pages" |
534 |
FontSize="10" |
535 |
GroupName="grpPages" /> |
536 |
<RadioButton
|
537 |
x:Name="rdoCommentPages" |
538 |
Margin="5,3" |
539 |
Checked="ShowPageChange" |
540 |
Content="Commented Pages" |
541 |
FontSize="10" |
542 |
GroupName="grpPages" /> |
543 |
<Grid Margin="4.5,0" Visibility="{Binding IsChecked, Converter={StaticResource BooleanToVisibilityConverter}, ElementName=rdoCommentPages}"> |
544 |
<ListBox
|
545 |
x:Name="lstSelectComment" |
546 |
telerik:StyleManager.Theme="Office2016" |
547 |
BorderBrush="{DynamicResource KCOMColor_ActiveBrush}" |
548 |
BorderThickness="2" |
549 |
ItemTemplate="{StaticResource CommentSelectTemplate}" /> |
550 |
<!-- <telerik:RadComboBox ClearSelectionButtonVisibility="Visible" ClearSelectionButtonContent="Select All" FontSize="10" Margin="14,0,0,0" x:Name="cboSelectComment" telerik:StyleManager.Theme="Windows8" BorderBrush="#FFA09E9E" ItemTemplate="{StaticResource CommentSelectTemplate}" SelectAllTextEvent="SelectionChanged"/> -->
|
551 |
</Grid>
|
552 |
</StackPanel>
|
553 |
</Border>
|
554 |
<telerik:RadListBox
|
555 |
x:Name="ImgListbox" |
556 |
Grid.Row="2" |
557 |
Margin="1" |
558 |
telerik:StyleManager.Theme="Office2016" |
559 |
Background="{DynamicResource KCOMColor_AlternativeBrush}" |
560 |
BorderBrush="#FFC2C2C2" |
561 |
BorderThickness="0" |
562 |
ItemContainerStyle="{StaticResource ItemContainerStyle}" |
563 |
ItemsSource="{Binding FilteredThumbnail.View, ElementName=userControl}" |
564 |
ScrollViewer.CanContentScroll="True" |
565 |
ScrollViewer.HorizontalScrollBarVisibility="Disabled" |
566 |
ScrollViewer.VerticalScrollBarVisibility="Auto" |
567 |
SelectedIndex="0"> |
568 |
<telerik:RadListBox.ItemsPanel>
|
569 |
<ItemsPanelTemplate>
|
570 |
<StackPanel /> |
571 |
</ItemsPanelTemplate>
|
572 |
</telerik:RadListBox.ItemsPanel>
|
573 |
<!--
|
574 |
VirtualizingStackPanel.IsVirtualizing를 True로 하면 빠른 속도로 선택시
|
575 |
선택 이벤트에서 이루어지는 Wcf호출이 누락되는 경우가 발생된다.
|
576 |
VirtualizingPanel.VirtualizationMode="Standard"
|
577 |
VirtualizingPanel.IsContainerVirtualizable="True"
|
578 |
VirtualizingPanel.ScrollUnit="Item"
|
579 |
VirtualizingPanel.CacheLengthUnit="Item"
|
580 |
-->
|
581 |
<VirtualizingPanel.IsVirtualizing>true</VirtualizingPanel.IsVirtualizing> |
582 |
<!--<telerik:RadListBox.ItemsPanel>
|
583 |
<ItemsPanelTemplate>
|
584 |
<VirtualizingStackPanel/>
|
585 |
</ItemsPanelTemplate>
|
586 |
</telerik:RadListBox.ItemsPanel>-->
|
587 |
<telerik:RadListBox.ItemTemplate>
|
588 |
<DataTemplate>
|
589 |
<Grid
|
590 |
x:Name="LayoutRoot" |
591 |
HorizontalAlignment="Center" |
592 |
VerticalAlignment="Center"> |
593 |
<Grid HorizontalAlignment="Stretch" VerticalAlignment="Center"> |
594 |
<Grid.RowDefinitions>
|
595 |
<RowDefinition Height="Auto" /> |
596 |
<RowDefinition Height="Auto" /> |
597 |
</Grid.RowDefinitions>
|
598 |
<Grid x:Name="imgRoot"> |
599 |
<Border
|
600 |
x:Name="imgBorder" |
601 |
BorderBrush="{DynamicResource KCOMColor_ReadOnlyBorderBrush}" |
602 |
BorderThickness="1,1,1.5,1.5" |
603 |
RenderTransformOrigin="0.5,0.5" |
604 |
Visibility="{Binding IsActive, Mode=OneWayToSource, Converter={StaticResource BooleanToVisibilityConverter}}"> |
605 |
<Border.RenderTransform>
|
606 |
<RotateTransform Angle="{Binding Angle, Mode=TwoWay}" /> |
607 |
</Border.RenderTransform>
|
608 |
<Image Source="{Binding ImageUri, IsAsync=True}" Stretch="Uniform" /> |
609 |
</Border>
|
610 |
</Grid>
|
611 |
<TextBlock
|
612 |
Grid.Row="1" |
613 |
HorizontalAlignment="Center" |
614 |
VerticalAlignment="Bottom" |
615 |
FontSize="14" |
616 |
FontStyle="Italic" |
617 |
Text="{Binding PageNumber, FallbackValue=PageNo}" /> |
618 |
</Grid>
|
619 |
<Border
|
620 |
Width="30" |
621 |
Height="20" |
622 |
Margin="10,5" |
623 |
HorizontalAlignment="Right" |
624 |
VerticalAlignment="Top" |
625 |
Background="{Binding DisplayColorItems, Converter={StaticResource ColorListToBrushConverter}}" |
626 |
Opacity="90"> |
627 |
<!--<controls:MarkupColorList ColorList="{Binding DisplayColorItems}" Opacity="90"/>-->
|
628 |
</Border>
|
629 |
</Grid>
|
630 |
</DataTemplate>
|
631 |
</telerik:RadListBox.ItemTemplate>
|
632 |
<!--<telerik:RadListBox.ItemsPanel>
|
633 |
<ItemsPanelTemplate>
|
634 |
<VirtualizingStackPanel/>
|
635 |
</ItemsPanelTemplate>
|
636 |
</telerik:RadListBox.ItemsPanel>-->
|
637 |
</telerik:RadListBox>
|
638 |
</Grid>
|
639 |
</telerik:RadTabItem>
|
640 |
<telerik:RadTabItem
|
641 |
FontSize="12" |
642 |
Header="Markup List" |
643 |
HeaderForeground="{DynamicResource KCOMColor_MarkerBrush}"> |
644 |
<Grid HorizontalAlignment="Stretch"> |
645 |
<Grid.ColumnDefinitions>
|
646 |
<ColumnDefinition Width="*" /> |
647 |
</Grid.ColumnDefinitions>
|
648 |
<Grid.RowDefinitions>
|
649 |
<RowDefinition Height="Auto" /> |
650 |
<RowDefinition Height="Auto" /> |
651 |
<RowDefinition Height="*" /> |
652 |
</Grid.RowDefinitions>
|
653 |
<Border
|
654 |
Background="#f5f5f5" |
655 |
BorderBrush="#e6e6e6" |
656 |
BorderThickness="0,0,0,1"> |
657 |
<Grid>
|
658 |
<Grid.ColumnDefinitions>
|
659 |
<ColumnDefinition /> |
660 |
<ColumnDefinition /> |
661 |
<ColumnDefinition /> |
662 |
</Grid.ColumnDefinitions>
|
663 |
<telerik:RadComboBox
|
664 |
x:Name="commentType" |
665 |
Grid.Column="0" |
666 |
Margin="5" |
667 |
HorizontalAlignment="Stretch" |
668 |
Background="White" |
669 |
BorderBrush="#d6d6d6" |
670 |
ClearSelectionButtonContent="Show All" |
671 |
ClearSelectionButtonVisibility="Visible" |
672 |
DropDownWidth="*" |
673 |
EmptyText="TYPE" |
674 |
SelectionChanged="commentFilter_SelectionChanged"> |
675 |
<telerik:RadComboBox.ItemTemplate>
|
676 |
<DataTemplate>
|
677 |
<Image
|
678 |
Width="28" |
679 |
Height="28" |
680 |
Margin="5" |
681 |
Source="{Binding Converter={StaticResource converterTypeImageConverter}}" /> |
682 |
</DataTemplate>
|
683 |
</telerik:RadComboBox.ItemTemplate>
|
684 |
</telerik:RadComboBox>
|
685 |
<telerik:RadComboBox
|
686 |
x:Name="commentUser" |
687 |
Grid.Column="1" |
688 |
Margin="5" |
689 |
HorizontalAlignment="Stretch" |
690 |
Background="White" |
691 |
BorderBrush="#d6d6d6" |
692 |
ClearSelectionButtonContent="Show All" |
693 |
ClearSelectionButtonVisibility="Visible" |
694 |
DropDownWidth="*" |
695 |
EmptyText="USER" |
696 |
FontSize="10" |
697 |
SelectionChanged="commentFilter_SelectionChanged"> |
698 |
<!-- ItemsSource="{Binding UsersCommentPagesList, ElementName=userControl}" -->
|
699 |
</telerik:RadComboBox>
|
700 |
<telerik:RadComboBox
|
701 |
x:Name="commentPage" |
702 |
Grid.Column="2" |
703 |
Margin="5" |
704 |
HorizontalAlignment="Stretch" |
705 |
Background="White" |
706 |
BorderBrush="#d6d6d6" |
707 |
ClearSelectionButtonContent="Show All" |
708 |
ClearSelectionButtonVisibility="Visible" |
709 |
DropDownWidth="*" |
710 |
EmptyText="PAGE" |
711 |
SelectionChanged="commentFilter_SelectionChanged" /> |
712 |
</Grid>
|
713 |
</Border>
|
714 |
<Border Grid.Row="1" Background="#FFE6E6E6"> |
715 |
<StackPanel>
|
716 |
<Border>
|
717 |
<Grid Height="28" Margin="0,4"> |
718 |
<Grid.ColumnDefinitions>
|
719 |
<ColumnDefinition Width="*" /> |
720 |
<ColumnDefinition Width="Auto" /> |
721 |
</Grid.ColumnDefinitions>
|
722 |
<TextBox
|
723 |
x:Name="txtSearch" |
724 |
Margin="2" |
725 |
HorizontalAlignment="Stretch" |
726 |
VerticalContentAlignment="Center" |
727 |
telerik:StyleManager.Theme="Office2016" |
728 |
AcceptsReturn="False" |
729 |
Background="#FFF3F3F3" |
730 |
BorderThickness="1" |
731 |
IsTabStop="True" |
732 |
KeyDown="TxtSearch_KeyDown" |
733 |
Style="{StaticResource ClearTextBoxStyle}" /> |
734 |
<telerik:RadPathButton
|
735 |
x:Name="btnSearch" |
736 |
Grid.Column="1" |
737 |
Width="80" |
738 |
Margin="2" |
739 |
VerticalContentAlignment="Center" |
740 |
telerik:StyleManager.Theme="Office2016" |
741 |
Background="#FF0054B9" |
742 |
Click="btnSearch_Click" |
743 |
Content="SEARCH" |
744 |
ContentPlacement="Left" |
745 |
CornerRadius="3" |
746 |
Foreground="White" |
747 |
PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphZoom}, |
748 |
Foreground=White}"
|
749 |
PathStyle="{StaticResource PathButtonStyle}" /> |
750 |
</Grid>
|
751 |
</Border>
|
752 |
</StackPanel>
|
753 |
</Border>
|
754 |
<Border
|
755 |
Grid.Row="1" |
756 |
Background="#f5f5f5" |
757 |
Visibility="Collapsed"> |
758 |
<StackPanel>
|
759 |
<Border>
|
760 |
<Grid>
|
761 |
<Grid.ColumnDefinitions>
|
762 |
<ColumnDefinition Width="36" /> |
763 |
<ColumnDefinition Width="*" /> |
764 |
<ColumnDefinition Width="Auto" /> |
765 |
</Grid.ColumnDefinitions>
|
766 |
|
767 |
<Image Margin="5" Source="/KCOM;component/Resources/Images/MenuImage_New/arrow.png" /> |
768 |
|
769 |
<StackPanel
|
770 |
Grid.Column="1" |
771 |
Margin="10" |
772 |
VerticalAlignment="Center" |
773 |
Orientation="Vertical"> |
774 |
<TextBlock
|
775 |
FontWeight="DemiBold" |
776 |
Foreground="#3d3d3d" |
777 |
Text="" /> |
778 |
<TextBlock Text="" /> |
779 |
</StackPanel>
|
780 |
|
781 |
|
782 |
<Border
|
783 |
Grid.Column="2" |
784 |
Margin="10" |
785 |
Padding="5" |
786 |
Background="#FF1258B6" |
787 |
CornerRadius="5"> |
788 |
<Button
|
789 |
Background="Transparent" |
790 |
BorderThickness="0" |
791 |
Content="Move" |
792 |
Foreground="White" /> |
793 |
</Border>
|
794 |
</Grid>
|
795 |
</Border>
|
796 |
</StackPanel>
|
797 |
</Border>
|
798 |
|
799 |
<Border
|
800 |
x:Name="gogo" |
801 |
Grid.Row="2" |
802 |
Margin="0" |
803 |
VerticalAlignment="Stretch" |
804 |
BorderBrush="#828282" |
805 |
BorderThickness="0,0,0,0.5"> |
806 |
<telerik:RadListBox
|
807 |
x:Name="MarkupList" |
808 |
Margin="2" |
809 |
Padding="0" |
810 |
HorizontalAlignment="Stretch" |
811 |
telerik:StyleManager.Theme="Office2016" |
812 |
Background="White" |
813 |
ItemsSource="{Binding MarkupInfoSmallList}" |
814 |
Loaded="MarkupList_Loaded" |
815 |
ScrollViewer.VerticalScrollBarVisibility="Auto"> |
816 |
<telerik:RadListBox.ItemContainerStyle>
|
817 |
<Style TargetType="telerik:RadListBoxItem"> |
818 |
<Setter Property="Padding" Value="0,0,0,0" /> |
819 |
</Style>
|
820 |
</telerik:RadListBox.ItemContainerStyle>
|
821 |
<telerik:RadListBox.ItemTemplate>
|
822 |
<DataTemplate>
|
823 |
<StackPanel>
|
824 |
<Border
|
825 |
Margin="1" |
826 |
Padding="1,3" |
827 |
BorderBrush="#EBFBFCFD" |
828 |
BorderThickness="1"> |
829 |
<Grid>
|
830 |
<Grid.ColumnDefinitions>
|
831 |
<ColumnDefinition Width="5" /> |
832 |
<ColumnDefinition Width="36" /> |
833 |
<ColumnDefinition Width="*" /> |
834 |
<ColumnDefinition Width="Auto" /> |
835 |
</Grid.ColumnDefinitions>
|
836 |
<Border Width="5" Background="#CE3D5DA0"> |
837 |
<Border.Style>
|
838 |
<Style TargetType="Border"> |
839 |
<Setter Property="Visibility" Value="Collapsed" /> |
840 |
<Style.Triggers>
|
841 |
<DataTrigger Binding="{Binding IsSelected, RelativeSource={RelativeSource AncestorType=telerik:RadListBoxItem, AncestorLevel=1}}" Value="True"> |
842 |
<Setter Property="Visibility" Value="Visible" /> |
843 |
</DataTrigger>
|
844 |
</Style.Triggers>
|
845 |
</Style>
|
846 |
</Border.Style>
|
847 |
</Border>
|
848 |
<Image
|
849 |
Grid.Column="1" |
850 |
Width="28" |
851 |
Height="28" |
852 |
Margin="5,0" |
853 |
Source="{Binding Data_Type, Converter={StaticResource converterTypeImageConverter}}" /> |
854 |
<StackPanel
|
855 |
Grid.Row="0" |
856 |
Grid.Column="2" |
857 |
Margin="5,0" |
858 |
VerticalAlignment="Center" |
859 |
Orientation="Vertical"> |
860 |
<TextBlock
|
861 |
FontWeight="DemiBold" |
862 |
Foreground="#3d3d3d" |
863 |
Text="{Binding UserName}" /> |
864 |
<StackPanel Orientation="Horizontal"> |
865 |
<TextBlock Text="{Binding PageNumber}" /> |
866 |
<TextBlock Text=" Page" /> |
867 |
</StackPanel>
|
868 |
</StackPanel>
|
869 |
<telerik:RadPathButton
|
870 |
x:Name="btnSearch" |
871 |
Grid.Column="3" |
872 |
Width="60" |
873 |
Height="28" |
874 |
Margin="2" |
875 |
VerticalContentAlignment="Center" |
876 |
telerik:StyleManager.Theme="Office2016" |
877 |
Background="#FF0054B9" |
878 |
Click="btGotoMarkup_Click" |
879 |
CommandParameter="{Binding}" |
880 |
Content="Move" |
881 |
ContentPlacement="Left" |
882 |
CornerRadius="3" |
883 |
Foreground="White" |
884 |
PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphFrontElement}, |
885 |
Foreground=White}"
|
886 |
PathStyle="{StaticResource PathButtonStyle}" /> |
887 |
<!--<telerik:RadButton Background="Transparent" Foreground="White" Content="Move" BorderThickness="0" Click="btGotoMarkup_Click" CommandParameter="{Binding}"/>-->
|
888 |
</Grid>
|
889 |
</Border>
|
890 |
</StackPanel>
|
891 |
</DataTemplate>
|
892 |
</telerik:RadListBox.ItemTemplate>
|
893 |
</telerik:RadListBox>
|
894 |
</Border>
|
895 |
<!--<Border VerticalAlignment="Stretch" Margin="0" Grid.Row="1" BorderThickness="0,0,0,0.5" BorderBrush="#828282" Background="White">
|
896 |
-->
|
897 |
<!--<Grid VerticalAlignment="Top" Margin="0" Grid.Row="1">
|
898 |
<Grid.Resources>
|
899 |
<Style TargetType="TextBlock">
|
900 |
<Setter Property="Foreground" Value="#828282"/>
|
901 |
</Style>
|
902 |
</Grid.Resources>
|
903 |
<Grid.ColumnDefinitions>
|
904 |
<ColumnDefinition Width="Auto"/>
|
905 |
<ColumnDefinition Width="7*"/>
|
906 |
</Grid.ColumnDefinitions>
|
907 |
<Grid.RowDefinitions>
|
908 |
<RowDefinition/>
|
909 |
<RowDefinition/>
|
910 |
<RowDefinition/>
|
911 |
</Grid.RowDefinitions>
|
912 |
<TextBlock Text="Cloud" Padding="5"/>
|
913 |
<TextBlock Text="Sejung Kim" Grid.Row="0" Grid.Column="1" Padding="5"/>
|
914 |
<TextBlock Text="Page 20" Grid.Column="0" Grid.Row="1" Padding="5"/>
|
915 |
<TextBlock Text="2017/10/17 17:56:51" Grid.Column="1" Grid.Row="1" Padding="5"/>
|
916 |
<TextBlock Text="Double click to Note." Grid.ColumnSpan="2" Grid.Row="2" Padding="5"/>
|
917 |
</Grid>-->
|
918 |
<!--<telerik:RadListBox ItemsSource="{Binding _markupInfoList, Mode=OneWayToSource, Source={x:Static common:ViewerDataModel.Instance}}">
|
919 |
<telerik:RadListBox.ItemTemplate>
|
920 |
<DataTemplate>
|
921 |
<TextBlock Text="{Binding UserName}"/>
|
922 |
</DataTemplate>
|
923 |
</telerik:RadListBox.ItemTemplate>
|
924 |
</telerik:RadListBox>-->
|
925 |
<!--
|
926 |
<TextBlock Text="{Binding MAMA, Mode=OneWay, Source={x:Static common:ViewerDataModel.Instance}}"/>
|
927 |
|
928 |
</Border>-->
|
929 |
</Grid>
|
930 |
</telerik:RadTabItem>
|
931 |
<!--<telerik:RadTabItem HeaderForeground="{DynamicResource KCOMColor_MarkerBrush}" FontSize="9">
|
932 |
<telerik:RadTabItem.Header>
|
933 |
-->
|
934 |
<!--<telerik:RadRibbonButton Content="Panorama" telerik:StyleManager.Theme="Office2016" FontSize="10" Margin="0,0,0,1" Background="#FF0054B9" Foreground="White"
|
935 |
BorderThickness="0" CornerRadius="3" Padding="5" x:Name="btnPanorama" Click="btnPanorama_Click"/>-->
|
936 |
<!--
|
937 |
<telerik:RadPathButton Grid.Column="1" ContentPlacement="Left" VerticalContentAlignment="Center" telerik:StyleManager.Theme="Office2016"
|
938 |
PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphZoom}, Foreground=White}"
|
939 |
FontFamily="{StaticResource TelerikWebUI}" Width="80" PathStyle="{StaticResource PathButtonStyle}"
|
940 |
Margin="2" Foreground="White" Content="Panorama" x:Name="btnPanorama" Click="btnPanorama_Click" Background="#FF0054B9"/>
|
941 |
</telerik:RadTabItem.Header>
|
942 |
</telerik:RadTabItem>-->
|
943 |
</telerik:RadTabControl>
|
944 |
|
945 |
</Grid>
|
946 |
</UserControl>
|