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