markus / KCOM / Controls / Sample.xaml @ 6c687be8
이력 | 보기 | 이력해설 | 다운로드 (53.2 KB)
1 | f65e6c02 | taeseongkim | <UserControl x:Name="userControl" x:Class="KCOM.Controls.Sample" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
---|---|---|---|
2 | 787a4489 | KangIngu | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||
4 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||
5 | 6c687be8 | taeseongkim | xmlns:controls="clr-namespace:KCOM.Controls" |
6 | 787a4489 | KangIngu | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:common="clr-namespace:KCOM.Common" |
7 | xmlns:local="clr-namespace:KCOM.Controls" xmlns:System="clr-namespace:System;assembly=mscorlib" |
||
8 | mc:Ignorable="d" Background="#f5f5f5" xmlns:converter="clr-namespace:KCOM.Common.Converter" |
||
9 | 2089959a | taeseongkim | d:DesignHeight="600" d:DesignWidth="200"> |
10 | 787a4489 | KangIngu | <UserControl.Resources>
|
11 | 2089959a | taeseongkim | <Style x:Key="PathButtonStyle" TargetType="Path"> |
12 | <Setter Property="Width" Value="12"/> |
||
13 | <Setter Property="Height" Value="12"/> |
||
14 | <Setter Property="Fill" Value="White" /> |
||
15 | <Setter Property="Stretch" Value="Fill" /> |
||
16 | <Setter Property="HorizontalAlignment" Value="Right"/> |
||
17 | <Setter Property="VerticalAlignment" Value="Center" /> |
||
18 | </Style>
|
||
19 | 787a4489 | KangIngu | <converter:CommentTypeImgConverter x:Key="converterTypeImageConverter"/> |
20 | <converter:MarkupDataToConverter x:Key="markupDataConverter"/> |
||
21 | <converter:MarginCorrectionConverter x:Key="marginConverter"/> |
||
22 | <DataTemplate x:Key="ThumbnailDataTemplate"> |
||
23 | <local:thumbnailControl HorizontalAlignment="Stretch"/> |
||
24 | </DataTemplate>
|
||
25 | <SolidColorBrush x:Key="ListTextSelectedColor" x:Shared="False"/> |
||
26 | <SolidColorBrush x:Key="ListSelectedColor" x:Shared="False"/> |
||
27 | <Style x:Key="ItemContainerStyle" TargetType="{x:Type telerik:RadListBoxItem}"> |
||
28 | <Setter Property="Template"> |
||
29 | <Setter.Value>
|
||
30 | <ControlTemplate TargetType="{x:Type telerik:RadListBoxItem}"> |
||
31 | 6c687be8 | taeseongkim | <Border x:Name="myBorder" VerticalAlignment="Center" |
32 | Padding="0" Margin="1" |
||
33 | eeb0a39c | taeseongkim | SnapsToDevicePixels="False"> |
34 | <Border.Style>
|
||
35 | <Style TargetType="Border"> |
||
36 | <Setter Property="BorderThickness" Value="3 3 3 3"/> |
||
37 | <Setter Property="BorderBrush" Value="Transparent"/> |
||
38 | </Style>
|
||
39 | </Border.Style>
|
||
40 | 6c687be8 | taeseongkim | <ContentPresenter Margin="5"/> |
41 | 787a4489 | KangIngu | </Border>
|
42 | <ControlTemplate.Triggers>
|
||
43 | <Trigger Property="IsSelected" Value="true"> |
||
44 | <Setter TargetName="myBorder" Property="BorderBrush" Value="{DynamicResource KCOMColor_AccentBrush}"/> |
||
45 | </Trigger>
|
||
46 | </ControlTemplate.Triggers>
|
||
47 | </ControlTemplate>
|
||
48 | </Setter.Value>
|
||
49 | </Setter>
|
||
50 | </Style>
|
||
51 | <ControlTemplate x:Key="RadExpanderControlTemplate1" TargetType="telerik:RadExpander"> |
||
52 | <Grid HorizontalAlignment="{TemplateBinding HorizontalAlignment}" VerticalAlignment="{TemplateBinding VerticalAlignment}"> |
||
53 | <VisualStateManager.VisualStateGroups>
|
||
54 | <VisualStateGroup x:Name="CommonStateGroup"> |
||
55 | <VisualState x:Name="Normal" /> |
||
56 | <VisualState x:Name="Disabled"> |
||
57 | <Storyboard>
|
||
58 | <ObjectAnimationUsingKeyFrames Duration="0:0:0" |
||
59 | Storyboard.TargetName="InnerCircle" |
||
60 | Storyboard.TargetProperty="Stroke"> |
||
61 | <DiscreteObjectKeyFrame KeyTime="0:0:0" Value="{StaticResource ControlInnerBorder_Disabled}" /> |
||
62 | </ObjectAnimationUsingKeyFrames>
|
||
63 | <DoubleAnimation Storyboard.TargetName="Content" |
||
64 | Storyboard.TargetProperty="Opacity" |
||
65 | To=".5" /> |
||
66 | <DoubleAnimation Storyboard.TargetName="HeaderContent" |
||
67 | Storyboard.TargetProperty="Opacity" |
||
68 | To=".5" /> |
||
69 | </Storyboard>
|
||
70 | </VisualState>
|
||
71 | </VisualStateGroup>
|
||
72 | <VisualStateGroup x:Name="HeaderStateGroup"> |
||
73 | <VisualState x:Name="NormalHeader" /> |
||
74 | <VisualState x:Name="MouseOverHeader"> |
||
75 | <Storyboard>
|
||
76 | <ObjectAnimationUsingKeyFrames Duration="0:0:0" |
||
77 | Storyboard.TargetName="InnerCircle" |
||
78 | Storyboard.TargetProperty="Stroke"> |
||
79 | <DiscreteObjectKeyFrame KeyTime="0:0:0" Value="{StaticResource ControlInnerBorder_MouseOver}" /> |
||
80 | </ObjectAnimationUsingKeyFrames>
|
||
81 | </Storyboard>
|
||
82 | </VisualState>
|
||
83 | <VisualState x:Name="PressedHeader"> |
||
84 | <Storyboard>
|
||
85 | <ObjectAnimationUsingKeyFrames Duration="0:0:0" |
||
86 | Storyboard.TargetName="InnerCircle" |
||
87 | Storyboard.TargetProperty="Stroke"> |
||
88 | <DiscreteObjectKeyFrame KeyTime="0:0:0" Value="{StaticResource ControlInnerBorder_Pressed}" /> |
||
89 | </ObjectAnimationUsingKeyFrames>
|
||
90 | </Storyboard>
|
||
91 | </VisualState>
|
||
92 | </VisualStateGroup>
|
||
93 | <VisualStateGroup x:Name="HeaderOrientationGroup"> |
||
94 | <VisualState x:Name="HorizontalOrientation"> |
||
95 | <Storyboard>
|
||
96 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderContentTransform" Storyboard.TargetProperty="LayoutTransform"> |
||
97 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
98 | <DiscreteObjectKeyFrame.Value>
|
||
99 | <RotateTransform Angle="0" /> |
||
100 | </DiscreteObjectKeyFrame.Value>
|
||
101 | </DiscreteObjectKeyFrame>
|
||
102 | </ObjectAnimationUsingKeyFrames>
|
||
103 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderContentTransform" Storyboard.TargetProperty="(Grid.Column)"> |
||
104 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
105 | <DiscreteObjectKeyFrame.Value>
|
||
106 | <System:Int32>1</System:Int32> |
||
107 | </DiscreteObjectKeyFrame.Value>
|
||
108 | </DiscreteObjectKeyFrame>
|
||
109 | </ObjectAnimationUsingKeyFrames>
|
||
110 | </Storyboard>
|
||
111 | </VisualState>
|
||
112 | <VisualState x:Name="VerticalOrientation"> |
||
113 | <Storyboard>
|
||
114 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderContentTransform" Storyboard.TargetProperty="LayoutTransform"> |
||
115 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
116 | <DiscreteObjectKeyFrame.Value>
|
||
117 | <RotateTransform Angle="90" /> |
||
118 | </DiscreteObjectKeyFrame.Value>
|
||
119 | </DiscreteObjectKeyFrame>
|
||
120 | </ObjectAnimationUsingKeyFrames>
|
||
121 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderContentTransform" Storyboard.TargetProperty="(Grid.Row)"> |
||
122 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
123 | <DiscreteObjectKeyFrame.Value>
|
||
124 | <System:Int32>1</System:Int32> |
||
125 | </DiscreteObjectKeyFrame.Value>
|
||
126 | </DiscreteObjectKeyFrame>
|
||
127 | </ObjectAnimationUsingKeyFrames>
|
||
128 | </Storyboard>
|
||
129 | </VisualState>
|
||
130 | </VisualStateGroup>
|
||
131 | <VisualStateGroup x:Name="ExpandStateGroup"> |
||
132 | <VisualState x:Name="Expanded"> |
||
133 | <Storyboard>
|
||
134 | <DoubleAnimation Duration="0:0:0.2" |
||
135 | Storyboard.TargetName="arrow" |
||
136 | Storyboard.TargetProperty="(FrameworkElement.RenderTransform).Angle" |
||
137 | To="180" /> |
||
138 | <ColorAnimation d:IsOptimized="True" |
||
139 | Duration="0" |
||
140 | Storyboard.TargetName="OuterCircle" |
||
141 | Storyboard.TargetProperty="(Shape.Stroke).(SolidColorBrush.Color)" |
||
142 | To="#FF1FA3EB" /> |
||
143 | </Storyboard>
|
||
144 | </VisualState>
|
||
145 | <VisualState x:Name="Collapsed"> |
||
146 | <Storyboard>
|
||
147 | <DoubleAnimation Duration="0:0:0.2" |
||
148 | Storyboard.TargetName="arrow" |
||
149 | Storyboard.TargetProperty="(FrameworkElement.RenderTransform).Angle" |
||
150 | To="0" /> |
||
151 | </Storyboard>
|
||
152 | </VisualState>
|
||
153 | </VisualStateGroup>
|
||
154 | <VisualStateGroup x:Name="ExpandDirectionStates"> |
||
155 | <VisualStateGroup.Transitions>
|
||
156 | <VisualTransition>
|
||
157 | <Storyboard>
|
||
158 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="Content" Storyboard.TargetProperty="(Grid.Row)"> |
||
159 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
160 | <DiscreteObjectKeyFrame.Value>
|
||
161 | <System:Int32>0</System:Int32> |
||
162 | </DiscreteObjectKeyFrame.Value>
|
||
163 | </DiscreteObjectKeyFrame>
|
||
164 | </ObjectAnimationUsingKeyFrames>
|
||
165 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="Content" Storyboard.TargetProperty="(Grid.Column)"> |
||
166 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
167 | <DiscreteObjectKeyFrame.Value>
|
||
168 | <System:Int32>0</System:Int32> |
||
169 | </DiscreteObjectKeyFrame.Value>
|
||
170 | </DiscreteObjectKeyFrame>
|
||
171 | </ObjectAnimationUsingKeyFrames>
|
||
172 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderButton" Storyboard.TargetProperty="(Grid.Row)"> |
||
173 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
174 | <DiscreteObjectKeyFrame.Value>
|
||
175 | <System:Int32>0</System:Int32> |
||
176 | </DiscreteObjectKeyFrame.Value>
|
||
177 | </DiscreteObjectKeyFrame>
|
||
178 | </ObjectAnimationUsingKeyFrames>
|
||
179 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderButton" Storyboard.TargetProperty="(Grid.Column)"> |
||
180 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
181 | <DiscreteObjectKeyFrame.Value>
|
||
182 | <System:Int32>0</System:Int32> |
||
183 | </DiscreteObjectKeyFrame.Value>
|
||
184 | </DiscreteObjectKeyFrame>
|
||
185 | </ObjectAnimationUsingKeyFrames>
|
||
186 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="col0" Storyboard.TargetProperty="Width"> |
||
187 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
188 | <DiscreteObjectKeyFrame.Value>
|
||
189 | <GridLength>Auto</GridLength> |
||
190 | </DiscreteObjectKeyFrame.Value>
|
||
191 | </DiscreteObjectKeyFrame>
|
||
192 | </ObjectAnimationUsingKeyFrames>
|
||
193 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="col1" Storyboard.TargetProperty="Width"> |
||
194 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
195 | <DiscreteObjectKeyFrame.Value>
|
||
196 | <GridLength>Auto</GridLength> |
||
197 | </DiscreteObjectKeyFrame.Value>
|
||
198 | </DiscreteObjectKeyFrame>
|
||
199 | </ObjectAnimationUsingKeyFrames>
|
||
200 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="row0" Storyboard.TargetProperty="Height"> |
||
201 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
202 | <DiscreteObjectKeyFrame.Value>
|
||
203 | <GridLength>Auto</GridLength> |
||
204 | </DiscreteObjectKeyFrame.Value>
|
||
205 | </DiscreteObjectKeyFrame>
|
||
206 | </ObjectAnimationUsingKeyFrames>
|
||
207 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="row1" Storyboard.TargetProperty="Height"> |
||
208 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
209 | <DiscreteObjectKeyFrame.Value>
|
||
210 | <GridLength>Auto</GridLength> |
||
211 | </DiscreteObjectKeyFrame.Value>
|
||
212 | </DiscreteObjectKeyFrame>
|
||
213 | </ObjectAnimationUsingKeyFrames>
|
||
214 | </Storyboard>
|
||
215 | </VisualTransition>
|
||
216 | </VisualStateGroup.Transitions>
|
||
217 | <VisualState x:Name="DirectionLeft"> |
||
218 | <Storyboard>
|
||
219 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="col0" Storyboard.TargetProperty="Width"> |
||
220 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
221 | <DiscreteObjectKeyFrame.Value>
|
||
222 | <GridLength>*</GridLength> |
||
223 | </DiscreteObjectKeyFrame.Value>
|
||
224 | </DiscreteObjectKeyFrame>
|
||
225 | </ObjectAnimationUsingKeyFrames>
|
||
226 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="row0" Storyboard.TargetProperty="Height"> |
||
227 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
228 | <DiscreteObjectKeyFrame.Value>
|
||
229 | <GridLength>*</GridLength> |
||
230 | </DiscreteObjectKeyFrame.Value>
|
||
231 | </DiscreteObjectKeyFrame>
|
||
232 | </ObjectAnimationUsingKeyFrames>
|
||
233 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderButton" Storyboard.TargetProperty="(Grid.Column)"> |
||
234 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
235 | <DiscreteObjectKeyFrame.Value>
|
||
236 | <System:Int32>1</System:Int32> |
||
237 | </DiscreteObjectKeyFrame.Value>
|
||
238 | </DiscreteObjectKeyFrame>
|
||
239 | </ObjectAnimationUsingKeyFrames>
|
||
240 | <DoubleAnimation Duration="0:0:0" |
||
241 | Storyboard.TargetName="arrowPanel" |
||
242 | Storyboard.TargetProperty="(FrameworkElement.RenderTransform).Angle" |
||
243 | To="90" /> |
||
244 | </Storyboard>
|
||
245 | </VisualState>
|
||
246 | <VisualState x:Name="DirectionRight"> |
||
247 | <Storyboard>
|
||
248 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="col1" Storyboard.TargetProperty="Width"> |
||
249 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
250 | <DiscreteObjectKeyFrame.Value>
|
||
251 | <GridLength>*</GridLength> |
||
252 | </DiscreteObjectKeyFrame.Value>
|
||
253 | </DiscreteObjectKeyFrame>
|
||
254 | </ObjectAnimationUsingKeyFrames>
|
||
255 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="row0" Storyboard.TargetProperty="Height"> |
||
256 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
257 | <DiscreteObjectKeyFrame.Value>
|
||
258 | <GridLength>*</GridLength> |
||
259 | </DiscreteObjectKeyFrame.Value>
|
||
260 | </DiscreteObjectKeyFrame>
|
||
261 | </ObjectAnimationUsingKeyFrames>
|
||
262 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="Content" Storyboard.TargetProperty="(Grid.Column)"> |
||
263 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
264 | <DiscreteObjectKeyFrame.Value>
|
||
265 | <System:Int32>1</System:Int32> |
||
266 | </DiscreteObjectKeyFrame.Value>
|
||
267 | </DiscreteObjectKeyFrame>
|
||
268 | </ObjectAnimationUsingKeyFrames>
|
||
269 | <DoubleAnimation Duration="0:0:0" |
||
270 | Storyboard.TargetName="arrowPanel" |
||
271 | Storyboard.TargetProperty="(FrameworkElement.RenderTransform).Angle" |
||
272 | To="-90" /> |
||
273 | </Storyboard>
|
||
274 | </VisualState>
|
||
275 | <VisualState x:Name="DirectionUp"> |
||
276 | <Storyboard>
|
||
277 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="col0" Storyboard.TargetProperty="Width"> |
||
278 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
279 | <DiscreteObjectKeyFrame.Value>
|
||
280 | <GridLength>*</GridLength> |
||
281 | </DiscreteObjectKeyFrame.Value>
|
||
282 | </DiscreteObjectKeyFrame>
|
||
283 | </ObjectAnimationUsingKeyFrames>
|
||
284 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="row0" Storyboard.TargetProperty="Height"> |
||
285 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
286 | <DiscreteObjectKeyFrame.Value>
|
||
287 | <GridLength>*</GridLength> |
||
288 | </DiscreteObjectKeyFrame.Value>
|
||
289 | </DiscreteObjectKeyFrame>
|
||
290 | </ObjectAnimationUsingKeyFrames>
|
||
291 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="HeaderButton" Storyboard.TargetProperty="(Grid.Row)"> |
||
292 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
293 | <DiscreteObjectKeyFrame.Value>
|
||
294 | <System:Int32>1</System:Int32> |
||
295 | </DiscreteObjectKeyFrame.Value>
|
||
296 | </DiscreteObjectKeyFrame>
|
||
297 | </ObjectAnimationUsingKeyFrames>
|
||
298 | <DoubleAnimation Duration="0:0:0" |
||
299 | Storyboard.TargetName="arrowPanel" |
||
300 | Storyboard.TargetProperty="(FrameworkElement.RenderTransform).Angle" |
||
301 | To="180" /> |
||
302 | </Storyboard>
|
||
303 | </VisualState>
|
||
304 | <VisualState x:Name="DirectionDown"> |
||
305 | <Storyboard>
|
||
306 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="col0" Storyboard.TargetProperty="Width"> |
||
307 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
308 | <DiscreteObjectKeyFrame.Value>
|
||
309 | <GridLength>*</GridLength> |
||
310 | </DiscreteObjectKeyFrame.Value>
|
||
311 | </DiscreteObjectKeyFrame>
|
||
312 | </ObjectAnimationUsingKeyFrames>
|
||
313 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="row1" Storyboard.TargetProperty="Height"> |
||
314 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
315 | <DiscreteObjectKeyFrame.Value>
|
||
316 | <GridLength>*</GridLength> |
||
317 | </DiscreteObjectKeyFrame.Value>
|
||
318 | </DiscreteObjectKeyFrame>
|
||
319 | </ObjectAnimationUsingKeyFrames>
|
||
320 | <ObjectAnimationUsingKeyFrames Storyboard.TargetName="Content" Storyboard.TargetProperty="(Grid.Row)"> |
||
321 | <DiscreteObjectKeyFrame KeyTime="0"> |
||
322 | <DiscreteObjectKeyFrame.Value>
|
||
323 | <System:Int32>1</System:Int32> |
||
324 | </DiscreteObjectKeyFrame.Value>
|
||
325 | </DiscreteObjectKeyFrame>
|
||
326 | </ObjectAnimationUsingKeyFrames>
|
||
327 | </Storyboard>
|
||
328 | </VisualState>
|
||
329 | </VisualStateGroup>
|
||
330 | </VisualStateManager.VisualStateGroups>
|
||
331 | |||
332 | <Border Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}"> |
||
333 | <Grid>
|
||
334 | <Grid.RowDefinitions>
|
||
335 | <RowDefinition x:Name="row0" Height="Auto" /> |
||
336 | <RowDefinition x:Name="row1" Height="Auto" /> |
||
337 | </Grid.RowDefinitions>
|
||
338 | <Grid.ColumnDefinitions>
|
||
339 | <ColumnDefinition x:Name="col0" Width="Auto" /> |
||
340 | <ColumnDefinition x:Name="col1" Width="Auto" /> |
||
341 | </Grid.ColumnDefinitions>
|
||
342 | |||
343 | <telerik:RadToggleButton x:Name="HeaderButton" |
||
344 | HorizontalAlignment="{TemplateBinding HorizontalHeaderAlignment}" |
||
345 | VerticalAlignment="{TemplateBinding VerticalHeaderAlignment}" |
||
346 | HorizontalContentAlignment="{TemplateBinding HorizontalHeaderAlignment}" |
||
347 | VerticalContentAlignment="{TemplateBinding VerticalHeaderAlignment}" |
||
348 | Background="Transparent" |
||
349 | ClickMode="{TemplateBinding ClickMode}" |
||
350 | FontFamily="{TemplateBinding FontFamily}" |
||
351 | FontSize="{TemplateBinding FontSize}" |
||
352 | FontStretch="{TemplateBinding FontStretch}" |
||
353 | FontStyle="{TemplateBinding FontStyle}" |
||
354 | FontWeight="{TemplateBinding FontWeight}" |
||
355 | Foreground="{TemplateBinding Foreground}" |
||
356 | IsChecked="{Binding IsExpanded, |
||
357 | Mode=TwoWay,
|
||
358 | RelativeSource={RelativeSource TemplatedParent}}"
|
||
359 | IsTabStop="{TemplateBinding IsTabStop}" |
||
360 | Padding="{TemplateBinding Padding}" |
||
361 | TabIndex="{TemplateBinding TabIndex}" |
||
362 | Template="{StaticResource ToggleTemplate}"> |
||
363 | |||
364 | <Grid x:Name="HeaderPanel" Background="Transparent"> |
||
365 | <Grid.RowDefinitions>
|
||
366 | <RowDefinition Height="Auto" /> |
||
367 | <RowDefinition Height="*" /> |
||
368 | </Grid.RowDefinitions>
|
||
369 | <Grid.ColumnDefinitions>
|
||
370 | <ColumnDefinition Width="Auto" /> |
||
371 | <ColumnDefinition Width="*" /> |
||
372 | </Grid.ColumnDefinitions>
|
||
373 | |||
374 | <Grid Grid.Row="0" |
||
375 | Grid.Column="0" |
||
376 | HorizontalAlignment="Left"> |
||
377 | <Ellipse x:Name="OuterCircle" |
||
378 | Width="13" |
||
379 | Height="13" |
||
380 | HorizontalAlignment="Center" |
||
381 | VerticalAlignment="Center" |
||
382 | Fill="{StaticResource ControlBackground}" |
||
383 | Stroke="#FFD6D4D4" /> |
||
384 | <Ellipse x:Name="InnerCircle" |
||
385 | Width="11" |
||
386 | Height="11" |
||
387 | Margin="1,2" |
||
388 | Stroke="{StaticResource ControlInnerBorder_Normal}" /> |
||
389 | |||
390 | <Grid x:Name="arrowPanel" |
||
391 | Width="7" |
||
392 | Height="4" |
||
393 | RenderTransformOrigin=".5 .5"> |
||
394 | <Grid.RenderTransform>
|
||
395 | <RotateTransform /> |
||
396 | </Grid.RenderTransform>
|
||
397 | <Path x:Name="arrow" |
||
398 | Data="M0,0 L0.67,0 4,2.67 7.25,0 8,0 8,0.67 4,4 0,0.75 z" |
||
399 | Fill="#FF25A0DA" |
||
400 | RenderTransformOrigin="0.5,0.5" |
||
401 | Stretch="Fill"> |
||
402 | <Path.RenderTransform>
|
||
403 | <RotateTransform Angle="0" /> |
||
404 | </Path.RenderTransform>
|
||
405 | </Path>
|
||
406 | </Grid>
|
||
407 | </Grid>
|
||
408 | <telerik:LayoutTransformControl x:Name="HeaderContentTransform" |
||
409 | Grid.Row="0" |
||
410 | Grid.Column="0" |
||
411 | RenderTransformOrigin=".5 .5"> |
||
412 | <ContentPresenter x:Name="HeaderContent" |
||
413 | Grid.Column="1" |
||
414 | Margin="3,0,0,0" |
||
415 | HorizontalAlignment="Stretch" |
||
416 | VerticalAlignment="Stretch" |
||
417 | Content="{TemplateBinding Header}" |
||
418 | ContentTemplate="{TemplateBinding HeaderTemplate}" /> |
||
419 | </telerik:LayoutTransformControl>
|
||
420 | |||
421 | </Grid>
|
||
422 | </telerik:RadToggleButton>
|
||
423 | |||
424 | <ContentPresenter x:Name="Content" |
||
425 | HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" |
||
426 | VerticalAlignment="{TemplateBinding VerticalContentAlignment}" |
||
427 | Content="{TemplateBinding Content}" |
||
428 | ContentTemplate="{TemplateBinding ContentTemplate}" |
||
429 | Visibility="Collapsed" /> |
||
430 | </Grid>
|
||
431 | </Border>
|
||
432 | </Grid>
|
||
433 | </ControlTemplate>
|
||
434 | <DataTemplate x:Key="CommentSelectTemplate"> |
||
435 | <CheckBox IsChecked="{Binding IsSelected, Mode=TwoWay}" telerik:StyleManager.Theme="Windows8"> |
||
436 | <StackPanel Orientation="Horizontal"> |
||
437 | <TextBlock Text="{Binding Depart}" /> |
||
438 | <TextBlock Text="/" /> |
||
439 | <TextBlock Text="{Binding UserName}" /> |
||
440 | </StackPanel>
|
||
441 | </CheckBox>
|
||
442 | </DataTemplate>
|
||
443 | </UserControl.Resources>
|
||
444 | 2089959a | taeseongkim | <Grid x:Name="grid" VerticalAlignment="Stretch"> |
445 | 787a4489 | KangIngu | <!--<TextBlock Text="Sort By:" Foreground="{DynamicResource KCOMColor_MarkerBrush}"/>-->
|
446 | 2089959a | taeseongkim | <telerik:RadTabControl Margin="0,6,0,0" BorderThickness="0" telerik:StyleManager.Theme="VisualStudio2013" HeaderBackground="#f5f5f5" FontSize="10" HorizontalAlignment="Stretch" HorizontalContentAlignment="Stretch" |
447 | 787a4489 | KangIngu | ScrollViewer.HorizontalScrollBarVisibility ="Disabled" SelectedIndex="0" > |
448 | 90e7968d | ljiyeon | |
449 | 2089959a | taeseongkim | <telerik:RadTabItem Header="Thumbnail" HeaderForeground="{DynamicResource KCOMColor_MarkerBrush}" FontSize="12"> |
450 | 787a4489 | KangIngu | <Grid>
|
451 | <Grid.RowDefinitions>
|
||
452 | <RowDefinition Height="Auto"/> |
||
453 | 2089959a | taeseongkim | <RowDefinition Height="Auto"/> |
454 | 787a4489 | KangIngu | <RowDefinition Height="*"/> |
455 | </Grid.RowDefinitions>
|
||
456 | 2089959a | taeseongkim | <telerik:RadPathButton ContentPlacement="Left" telerik:StyleManager.Theme="Office2016" CornerRadius="3" |
457 | PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphGrid}, Foreground=White}" Height="24" Width="120" PathStyle="{StaticResource PathButtonStyle}" |
||
458 | Margin="2" Foreground="White" Content="Show All Pages" x:Name="btnPanorama" Click="btnPanorama_Click" Background="#FF0054B9" HorizontalAlignment="Right"/> |
||
459 | <Border BorderThickness="1" Margin="1" Grid.Row="1" BorderBrush="#FFC9C9C9" Background="White"> |
||
460 | 787a4489 | KangIngu | <StackPanel>
|
461 | 6c687be8 | taeseongkim | <RadioButton Content="All Pages" IsChecked="True" telerik:StyleManager.Theme="Office2013" FontSize="10" Margin="5,3" Click="ShowPageChange" x:Name="rdoAllPages"/> |
462 | <RadioButton Content="Favorited Pages" FontSize="10" Margin="5,3" x:Name="rdoFavoritePages" Click="ShowPageChange" /> |
||
463 | 787a4489 | KangIngu | <Grid Margin="4.5,0"> |
464 | <telerik:RadExpander Name="expCommentPages" |
||
465 | Padding="2" |
||
466 | telerik:StyleManager.Theme="Office2016" |
||
467 | Template="{StaticResource RadExpanderControlTemplate1}"> |
||
468 | <telerik:RadExpander.Header>
|
||
469 | <TextBlock Text="Commented Pages" FontSize="10" Margin="3,0"/> |
||
470 | </telerik:RadExpander.Header>
|
||
471 | <telerik:RadExpander.Content>
|
||
472 | <ListBox x:Name="lstSelectComment" |
||
473 | BorderBrush="{DynamicResource KCOMColor_ActiveBrush}" |
||
474 | BorderThickness="2" |
||
475 | ItemTemplate="{StaticResource CommentSelectTemplate}" |
||
476 | telerik:StyleManager.Theme="Office2016" /> |
||
477 | </telerik:RadExpander.Content>
|
||
478 | </telerik:RadExpander>
|
||
479 | <!-- <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"/> -->
|
||
480 | </Grid>
|
||
481 | </StackPanel>
|
||
482 | </Border>
|
||
483 | 6c687be8 | taeseongkim | <!--<telerik:RadListBox x:Name="ImgListbox" Margin="1"
|
484 | 5ce56a3a | KangIngu | ItemTemplate="{StaticResource ThumbnailDataTemplate}"
|
485 | eeb0a39c | taeseongkim | Grid.Row="2"
|
486 | SelectedItem="{Binding}"
|
||
487 | 5ce56a3a | KangIngu | Background="{DynamicResource KCOMColor_AlternativeBrush}"
|
488 | ItemContainerStyle="{StaticResource ItemContainerStyle}"
|
||
489 | BorderBrush="#FFC2C2C2" BorderThickness="0"
|
||
490 | eeb0a39c | taeseongkim | SelectedIndex="0"
|
491 | 5ce56a3a | KangIngu | ScrollViewer.HorizontalScrollBarVisibility="Disabled"
|
492 | afaa7c92 | djkim | ScrollViewer.VerticalScrollBarVisibility="Auto"
|
493 | ScrollViewer.CanContentScroll="True"
|
||
494 | ScrollViewer.IsDeferredScrollingEnabled="True"
|
||
495 | d97dbc7f | taeseongkim | VirtualizingStackPanel.IsVirtualizing="False"
|
496 | afaa7c92 | djkim | VirtualizingStackPanel.VirtualizationMode="Recycling"
|
497 | 90e7968d | ljiyeon | telerik:StyleManager.Theme="Office2016" >
|
498 | 787a4489 | KangIngu | <telerik:RadListBox.ItemsPanel>
|
499 | <ItemsPanelTemplate>
|
||
500 | 90e7968d | ljiyeon | <VirtualizingStackPanel/>
|
501 | 787a4489 | KangIngu | </ItemsPanelTemplate>
|
502 | </telerik:RadListBox.ItemsPanel>
|
||
503 | 6c687be8 | taeseongkim | </telerik:RadListBox>-->
|
504 | <telerik:RadListBox x:Name="ImgListbox" Margin="1" |
||
505 | Grid.Row="2" |
||
506 | Background="{DynamicResource KCOMColor_AlternativeBrush}" |
||
507 | ItemContainerStyle="{StaticResource ItemContainerStyle}" |
||
508 | BorderBrush="#FFC2C2C2" BorderThickness="0" |
||
509 | SelectedIndex="0" |
||
510 | ScrollViewer.HorizontalScrollBarVisibility="Disabled" |
||
511 | ScrollViewer.VerticalScrollBarVisibility="Auto" |
||
512 | ScrollViewer.CanContentScroll="True" |
||
513 | telerik:StyleManager.Theme="Office2016" > |
||
514 | <telerik:RadListBox.ItemsPanel>
|
||
515 | <ItemsPanelTemplate>
|
||
516 | <VirtualizingStackPanel/> |
||
517 | </ItemsPanelTemplate>
|
||
518 | </telerik:RadListBox.ItemsPanel>
|
||
519 | <telerik:RadListBox.ItemTemplate>
|
||
520 | <DataTemplate>
|
||
521 | <Grid x:Name="LayoutRoot"> |
||
522 | <Grid></Grid> |
||
523 | <Grid VerticalAlignment="Center" > |
||
524 | <Grid.RowDefinitions>
|
||
525 | <RowDefinition Height="Auto"/> |
||
526 | <RowDefinition Height="Auto"/> |
||
527 | </Grid.RowDefinitions>
|
||
528 | <Grid x:Name="imgRoot"> |
||
529 | <Border x:Name="imgBorder" BorderBrush="{DynamicResource KCOMColor_ReadOnlyBorderBrush}" |
||
530 | RenderTransformOrigin="0.5,0.5" BorderThickness="1,1,1.5,1.5"> |
||
531 | <Border.RenderTransform>
|
||
532 | <RotateTransform Angle="{Binding Angle, Mode=TwoWay}"/> |
||
533 | </Border.RenderTransform>
|
||
534 | <Image Stretch="Uniform" Source="{Binding ImageUri,IsAsync=True}"/> |
||
535 | </Border>
|
||
536 | </Grid>
|
||
537 | <TextBlock Grid.Row="1" Text="{Binding PageNumber, FallbackValue=PageNo}" FontStyle="Italic" FontSize="14" VerticalAlignment="Bottom" HorizontalAlignment="Center"/> |
||
538 | </Grid>
|
||
539 | <Border Width="30" Height="20" VerticalAlignment="Top" HorizontalAlignment="Right" Margin="10,5"> |
||
540 | <controls:MarkupColorList ColorList="{Binding DisplayColorItems,Mode=TwoWay}" Opacity="90"/> |
||
541 | </Border>
|
||
542 | </Grid>
|
||
543 | </DataTemplate>
|
||
544 | </telerik:RadListBox.ItemTemplate>
|
||
545 | <!--<telerik:RadListBox.ItemsPanel>
|
||
546 | <ItemsPanelTemplate>
|
||
547 | <VirtualizingStackPanel/>
|
||
548 | </ItemsPanelTemplate>
|
||
549 | </telerik:RadListBox.ItemsPanel>-->
|
||
550 | 787a4489 | KangIngu | </telerik:RadListBox>
|
551 | </Grid>
|
||
552 | </telerik:RadTabItem>
|
||
553 | 2089959a | taeseongkim | <telerik:RadTabItem Header="Markup List" HeaderForeground="{DynamicResource KCOMColor_MarkerBrush}" FontSize="12" > |
554 | 787a4489 | KangIngu | <Grid HorizontalAlignment="Stretch"> |
555 | <Grid.ColumnDefinitions>
|
||
556 | <ColumnDefinition Width="*"/> |
||
557 | </Grid.ColumnDefinitions>
|
||
558 | <Grid.RowDefinitions>
|
||
559 | <RowDefinition Height="Auto"/> |
||
560 | 79f3f21a | djkim | <RowDefinition Height="Auto"/> |
561 | 787a4489 | KangIngu | <RowDefinition Height="*"/> |
562 | </Grid.RowDefinitions>
|
||
563 | <Border BorderThickness="0,0,0,1" BorderBrush="#e6e6e6" Background="#f5f5f5"> |
||
564 | <Grid>
|
||
565 | <Grid.ColumnDefinitions>
|
||
566 | <ColumnDefinition/> |
||
567 | <ColumnDefinition/> |
||
568 | <ColumnDefinition/> |
||
569 | </Grid.ColumnDefinitions>
|
||
570 | <telerik:RadComboBox EmptyText="TYPE" Grid.Column="0" HorizontalAlignment="Stretch" Margin="5" DropDownWidth="*" Background="White" BorderBrush="#d6d6d6" x:Name="commentType" |
||
571 | eeb0a39c | taeseongkim | ClearSelectionButtonVisibility="Visible" ClearSelectionButtonContent="Show All" SelectionChanged="commentFilter_SelectionChanged"> |
572 | 787a4489 | KangIngu | <telerik:RadComboBox.ItemTemplate>
|
573 | <DataTemplate>
|
||
574 | <Image Source="{Binding Converter={StaticResource converterTypeImageConverter}}" Margin="5" Width="28" Height="28"/> |
||
575 | </DataTemplate>
|
||
576 | </telerik:RadComboBox.ItemTemplate>
|
||
577 | </telerik:RadComboBox>
|
||
578 | <telerik:RadComboBox HorizontalAlignment="Stretch" Margin="5" DropDownWidth="*" Background="White" BorderBrush="#d6d6d6" x:Name="commentUser" |
||
579 | eeb0a39c | taeseongkim | FontSize="10" Grid.Column="1" |
580 | SelectionChanged="commentFilter_SelectionChanged" ClearSelectionButtonVisibility="Visible" ClearSelectionButtonContent="Show All" |
||
581 | 787a4489 | KangIngu | EmptyText="USER"> |
582 | eeb0a39c | taeseongkim | <!--ItemsSource="{Binding UsersCommentPagesList, ElementName=userControl}"-->
|
583 | 787a4489 | KangIngu | </telerik:RadComboBox>
|
584 | <telerik:RadComboBox EmptyText="PAGE" Grid.Column="2" HorizontalAlignment="Stretch" Margin="5" DropDownWidth="*" Background="White" BorderBrush="#d6d6d6" x:Name="commentPage" |
||
585 | eeb0a39c | taeseongkim | ClearSelectionButtonVisibility="Visible" ClearSelectionButtonContent="Show All" SelectionChanged="commentFilter_SelectionChanged"/> |
586 | 787a4489 | KangIngu | </Grid>
|
587 | </Border>
|
||
588 | 2089959a | taeseongkim | <Border Grid.Row="1" Background="#FFE6E6E6"> |
589 | 79f3f21a | djkim | <StackPanel>
|
590 | <Border>
|
||
591 | 2089959a | taeseongkim | <Grid Height="28" Margin="0,4"> |
592 | 79f3f21a | djkim | <Grid.ColumnDefinitions>
|
593 | 2089959a | taeseongkim | <ColumnDefinition Width="*"/> |
594 | <ColumnDefinition Width="Auto"/> |
||
595 | 79f3f21a | djkim | </Grid.ColumnDefinitions>
|
596 | 2089959a | taeseongkim | <TextBox HorizontalAlignment="Stretch" Style="{StaticResource ClearTextBoxStyle}" Margin="2" x:Name="txtSearch" |
597 | telerik:StyleManager.Theme="Office2016" AcceptsReturn="False" Background="#FFF3F3F3" |
||
598 | BorderThickness="1" VerticalContentAlignment="Center" IsTabStop="True" KeyDown="TxtSearch_KeyDown"/> |
||
599 | <telerik:RadPathButton Grid.Column="1" ContentPlacement="Left" VerticalContentAlignment="Center" telerik:StyleManager.Theme="Office2016" |
||
600 | PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphZoom}, Foreground=White}" |
||
601 | Width="80" PathStyle="{StaticResource PathButtonStyle}" CornerRadius="3" |
||
602 | Margin="2" Foreground="White" Content="SEARCH" x:Name="btnSearch" Click="btnSearch_Click" Background="#FF0054B9"/> |
||
603 | 79f3f21a | djkim | </Grid>
|
604 | </Border>
|
||
605 | </StackPanel>
|
||
606 | </Border>
|
||
607 | 787a4489 | KangIngu | <Border Grid.Row="1" Background="#f5f5f5" Visibility="Collapsed"> |
608 | <StackPanel>
|
||
609 | <Border>
|
||
610 | <Grid>
|
||
611 | <Grid.ColumnDefinitions>
|
||
612 | <ColumnDefinition Width="36"/> |
||
613 | <ColumnDefinition Width="*"/> |
||
614 | <ColumnDefinition Width="Auto"/> |
||
615 | </Grid.ColumnDefinitions>
|
||
616 | |||
617 | <Image Source="/KCOM;component/Resources/Images/MenuImage_New/arrow.png" Margin="5"/> |
||
618 | |||
619 | <StackPanel Orientation="Vertical" Grid.Column="1" Margin="10" VerticalAlignment="Center"> |
||
620 | 2089959a | taeseongkim | <TextBlock Text="" FontWeight="DemiBold" Foreground="#3d3d3d"/> |
621 | <TextBlock Text=""/> |
||
622 | 787a4489 | KangIngu | </StackPanel>
|
623 | |||
624 | |||
625 | <Border Background="#FF1258B6" CornerRadius="5" Grid.Column="2" Padding="5" Margin="10"> |
||
626 | <Button Background="Transparent" Foreground="White" Content="Move" BorderThickness="0"/> |
||
627 | </Border>
|
||
628 | </Grid>
|
||
629 | </Border>
|
||
630 | </StackPanel>
|
||
631 | </Border>
|
||
632 | |||
633 | 79f3f21a | djkim | <Border VerticalAlignment="Stretch" Margin="0" Grid.Row="2" BorderThickness="0,0,0,0.5" BorderBrush="#828282" x:Name="gogo"> |
634 | 2089959a | taeseongkim | <telerik:RadListBox telerik:StyleManager.Theme="Office2016" Padding="0" Margin="2" HorizontalAlignment="Stretch" x:Name="MarkupList" ScrollViewer.VerticalScrollBarVisibility="Auto" |
635 | Background="White" ItemsSource="{Binding MarkupInfoSmallList}" Loaded="MarkupList_Loaded"> |
||
636 | 787a4489 | KangIngu | <telerik:RadListBox.ItemContainerStyle>
|
637 | <Style TargetType="telerik:RadListBoxItem"> |
||
638 | <Setter Property="Padding" Value="0,0,0,0"/> |
||
639 | </Style>
|
||
640 | </telerik:RadListBox.ItemContainerStyle>
|
||
641 | <telerik:RadListBox.ItemTemplate>
|
||
642 | <DataTemplate>
|
||
643 | <StackPanel>
|
||
644 | 2089959a | taeseongkim | <Border BorderBrush="#EBFBFCFD" BorderThickness="1" Margin="1" Padding="1,3"> |
645 | 787a4489 | KangIngu | <Grid>
|
646 | <Grid.ColumnDefinitions>
|
||
647 | 2089959a | taeseongkim | <ColumnDefinition Width="5"/> |
648 | 787a4489 | KangIngu | <ColumnDefinition Width="36"/> |
649 | <ColumnDefinition Width="*"/> |
||
650 | <ColumnDefinition Width="Auto"/> |
||
651 | </Grid.ColumnDefinitions>
|
||
652 | 2089959a | taeseongkim | <Border Width="5" Background="#CE3D5DA0"> |
653 | <Border.Style>
|
||
654 | <Style TargetType="Border"> |
||
655 | <Setter Property="Visibility" Value="Collapsed"/> |
||
656 | <Style.Triggers>
|
||
657 | <DataTrigger Binding="{Binding IsSelected, RelativeSource={RelativeSource AncestorType=telerik:RadListBoxItem, AncestorLevel=1}}" Value="True"> |
||
658 | <Setter Property="Visibility" Value="Visible"/> |
||
659 | </DataTrigger>
|
||
660 | </Style.Triggers>
|
||
661 | </Style>
|
||
662 | </Border.Style>
|
||
663 | </Border>
|
||
664 | <Image Grid.Column="1" Source="{Binding Data_Type, Converter={StaticResource converterTypeImageConverter}}" Margin="5,0" Width="28" Height="28"/> |
||
665 | <StackPanel Orientation="Vertical" Grid.Row="0" Grid.Column="2" Margin="5,0" VerticalAlignment="Center"> |
||
666 | 787a4489 | KangIngu | <TextBlock Text="{Binding UserName}" FontWeight="DemiBold" Foreground="#3d3d3d"/> |
667 | <StackPanel Orientation="Horizontal"> |
||
668 | <TextBlock Text="{Binding PageNumber}"/> |
||
669 | <TextBlock Text=" Page"/> |
||
670 | </StackPanel>
|
||
671 | </StackPanel>
|
||
672 | 2089959a | taeseongkim | <telerik:RadPathButton Grid.Column="3" ContentPlacement="Left" VerticalContentAlignment="Center" telerik:StyleManager.Theme="Office2016" |
673 | PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphFrontElement}, Foreground=White}" |
||
674 | Width="60" Height="28" PathStyle="{StaticResource PathButtonStyle}" CornerRadius="3" |
||
675 | Margin="2" Foreground="White" Content="Move" x:Name="btnSearch" Click="btGotoMarkup_Click" Background="#FF0054B9" CommandParameter="{Binding}"> |
||
676 | </telerik:RadPathButton>
|
||
677 | f65e6c02 | taeseongkim | <!--<telerik:RadButton Background="Transparent" Foreground="White" Content="Move" BorderThickness="0" Click="btGotoMarkup_Click" CommandParameter="{Binding}"/>-->
|
678 | 787a4489 | KangIngu | </Grid>
|
679 | </Border>
|
||
680 | </StackPanel>
|
||
681 | </DataTemplate>
|
||
682 | </telerik:RadListBox.ItemTemplate>
|
||
683 | </telerik:RadListBox>
|
||
684 | </Border>
|
||
685 | <!--<Border VerticalAlignment="Stretch" Margin="0" Grid.Row="1" BorderThickness="0,0,0,0.5" BorderBrush="#828282" Background="White">
|
||
686 | -->
|
||
687 | <!--<Grid VerticalAlignment="Top" Margin="0" Grid.Row="1">
|
||
688 | <Grid.Resources>
|
||
689 | <Style TargetType="TextBlock">
|
||
690 | <Setter Property="Foreground" Value="#828282"/>
|
||
691 | </Style>
|
||
692 | </Grid.Resources>
|
||
693 | <Grid.ColumnDefinitions>
|
||
694 | <ColumnDefinition Width="Auto"/>
|
||
695 | <ColumnDefinition Width="7*"/>
|
||
696 | </Grid.ColumnDefinitions>
|
||
697 | <Grid.RowDefinitions>
|
||
698 | <RowDefinition/>
|
||
699 | <RowDefinition/>
|
||
700 | <RowDefinition/>
|
||
701 | </Grid.RowDefinitions>
|
||
702 | <TextBlock Text="Cloud" Padding="5"/>
|
||
703 | <TextBlock Text="Sejung Kim" Grid.Row="0" Grid.Column="1" Padding="5"/>
|
||
704 | <TextBlock Text="Page 20" Grid.Column="0" Grid.Row="1" Padding="5"/>
|
||
705 | <TextBlock Text="2017/10/17 17:56:51" Grid.Column="1" Grid.Row="1" Padding="5"/>
|
||
706 | <TextBlock Text="Double click to Note." Grid.ColumnSpan="2" Grid.Row="2" Padding="5"/>
|
||
707 | </Grid>-->
|
||
708 | <!--<telerik:RadListBox ItemsSource="{Binding _markupInfoList, Mode=OneWayToSource, Source={x:Static common:ViewerDataModel.Instance}}">
|
||
709 | <telerik:RadListBox.ItemTemplate>
|
||
710 | <DataTemplate>
|
||
711 | <TextBlock Text="{Binding UserName}"/>
|
||
712 | </DataTemplate>
|
||
713 | </telerik:RadListBox.ItemTemplate>
|
||
714 | </telerik:RadListBox>-->
|
||
715 | <!--
|
||
716 | <TextBlock Text="{Binding MAMA, Mode=OneWay, Source={x:Static common:ViewerDataModel.Instance}}"/>
|
||
717 |
|
||
718 | </Border>-->
|
||
719 | </Grid>
|
||
720 | </telerik:RadTabItem>
|
||
721 | 2089959a | taeseongkim | <!--<telerik:RadTabItem HeaderForeground="{DynamicResource KCOMColor_MarkerBrush}" FontSize="9">
|
722 | 787a4489 | KangIngu | <telerik:RadTabItem.Header>
|
723 | f65e6c02 | taeseongkim | -->
|
724 | <!--<telerik:RadRibbonButton Content="Panorama" telerik:StyleManager.Theme="Office2016" FontSize="10" Margin="0,0,0,1" Background="#FF0054B9" Foreground="White"
|
||
725 | BorderThickness="0" CornerRadius="3" Padding="5" x:Name="btnPanorama" Click="btnPanorama_Click"/>-->
|
||
726 | <!--
|
||
727 | 2089959a | taeseongkim | <telerik:RadPathButton Grid.Column="1" ContentPlacement="Left" VerticalContentAlignment="Center" telerik:StyleManager.Theme="Office2016"
|
728 | PathGeometry="{telerik:RadGlyph Glyph={StaticResource GlyphZoom}, Foreground=White}"
|
||
729 | FontFamily="{StaticResource TelerikWebUI}" Width="80" PathStyle="{StaticResource PathButtonStyle}"
|
||
730 | Margin="2" Foreground="White" Content="Panorama" x:Name="btnPanorama" Click="btnPanorama_Click" Background="#FF0054B9"/>
|
||
731 | 787a4489 | KangIngu | </telerik:RadTabItem.Header>
|
732 | 2089959a | taeseongkim | </telerik:RadTabItem>-->
|
733 | 787a4489 | KangIngu | </telerik:RadTabControl>
|
734 | 2089959a | taeseongkim | |
735 | 787a4489 | KangIngu | </Grid>
|
736 | </UserControl> |