markus / KCOM / Controls / PrintControl.xaml @ 91c5e7a1
이력 | 보기 | 이력해설 | 다운로드 (25.8 KB)
1 | 787a4489 | KangIngu | <UserControl x:Class="KCOM.Control.PrintControl" |
---|---|---|---|
2 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||
3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||
4 | xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||
5 | xmlns:wrappanel ="clr-namespace:KCOM.WrapPanel" |
||
6 | xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||
7 | mc:Ignorable="d" |
||
8 | xmlns:telInput="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Input" |
||
9 | xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" |
||
10 | xmlns:telerikGrid="clr-namespace:Telerik.Windows.Controls.GridView;assembly=Telerik.Windows.Controls.GridView" |
||
11 | d:DesignHeight="550" d:DesignWidth="650"> |
||
12 | |||
13 | <UserControl.Resources>
|
||
14 | <Style TargetType="telerik:GridViewCell" x:Key="GridViewCellCenterStyle"> |
||
15 | <Setter Property="HorizontalAlignment" Value="Center"/> |
||
16 | </Style>
|
||
17 | <!--좌측 썸네일 스크롤 스타일-->
|
||
18 | <Style x:Key="CustomThumbStyle" TargetType="Thumb"> |
||
19 | <Setter Property="Template"> |
||
20 | <Setter.Value>
|
||
21 | <ControlTemplate TargetType="Thumb"> |
||
22 | <Rectangle Width="10" Height="20" Fill="#FF45BAFF"/> |
||
23 | <!--<Rectangle Width="10" Height="20" Fill="#FFFF0000"/>-->
|
||
24 | </ControlTemplate>
|
||
25 | </Setter.Value>
|
||
26 | </Setter>
|
||
27 | </Style>
|
||
28 | <!--강인구-->
|
||
29 | |||
30 | </UserControl.Resources>
|
||
31 | <Grid x:Name="LayoutRoot" Background="White"> |
||
32 | <Grid.ColumnDefinitions>
|
||
33 | <ColumnDefinition Width="4*"/> |
||
34 | <ColumnDefinition Width="6*"/> |
||
35 | </Grid.ColumnDefinitions>
|
||
36 | <Grid.RowDefinitions>
|
||
37 | <RowDefinition Height="Auto"/> |
||
38 | <RowDefinition Height="8*"/> |
||
39 | </Grid.RowDefinitions>
|
||
40 | |||
41 | <Border Grid.Row="0" Grid.ColumnSpan="2" BorderBrush="#232323" BorderThickness="0,0,0,0.5"> |
||
42 | <!--오른쪽 상단-->
|
||
43 | <StackPanel Orientation="Horizontal" HorizontalAlignment="Right"> |
||
44 | <StackPanel Orientation="Horizontal" Margin="3"> |
||
45 | <TextBlock Text="Slip" VerticalAlignment="Center" Margin="3"/> |
||
46 | <TextBlock Text="{Binding vpSlip}" Foreground="#007ACC" VerticalAlignment="Center" Margin="3" FontWeight="ExtraBold"/> |
||
47 | </StackPanel>
|
||
48 | <StackPanel Orientation="Horizontal" Margin="3"> |
||
49 | <TextBlock Text="VP" VerticalAlignment="Center" Margin="3"/> |
||
50 | <TextBlock Text="{Binding vpTitle}" Foreground="#007ACC" VerticalAlignment="Center" Margin="3" |
||
51 | FontWeight="ExtraBold"/> |
||
52 | </StackPanel>
|
||
53 | <StackPanel Orientation="Horizontal" Margin="3"> |
||
54 | <TextBlock Text="Pages" VerticalAlignment="Center" Margin="3"/> |
||
55 | <TextBlock Text="{Binding PagesCount}" Foreground="#007ACC" VerticalAlignment="Center" Margin="3" FontWeight="ExtraBold"/> |
||
56 | </StackPanel>
|
||
57 | </StackPanel>
|
||
58 | </Border>
|
||
59 | |||
60 | <Border Grid.Row="1" Grid.Column="0" BorderBrush="#232323" BorderThickness="0,0,0,0"> |
||
61 | <telerik:GroupBox Header="Preview : Composite" Margin="3" telerik:StyleManager.Theme="Office2016"> |
||
62 | <Grid>
|
||
63 | <Grid.RowDefinitions>
|
||
64 | <RowDefinition Height="30"/> |
||
65 | <RowDefinition Height="*"/> |
||
66 | <RowDefinition Height="30"/> |
||
67 | <RowDefinition Height="50"/> |
||
68 | </Grid.RowDefinitions>
|
||
69 | <!--<Border Grid.Row="1" Background="#5F5F5F" MinWidth="200">-->
|
||
70 | <Border Grid.Row="1" Background="#5F5F5F" MinWidth="200"> |
||
71 | <!--잠시 제외 뷰어 부분-->
|
||
72 | <Viewbox x:Name="PrintView" > |
||
73 | <!--<Canvas x:Name="printCanvas" Background="{Binding Source={x:Static local:DataModel.Instance}, Path=BackgroundImage, Mode=OneWay}">-->
|
||
74 | <!--<Canvas x:Name="printCanvas" Background="{Binding Path=Back_Image}">-->
|
||
75 | <Canvas x:Name="printCanvas"> |
||
76 | |||
77 | </Canvas>
|
||
78 | </Viewbox>
|
||
79 | </Border>
|
||
80 | <telerik:RadBusyIndicator Name="indicator" Grid.Row="1" telerik:StyleManager.Theme="Office2016" IsIndeterminate="True"/> |
||
81 | <Border Grid.Row="3"> |
||
82 | <Grid>
|
||
83 | <Grid.ColumnDefinitions>
|
||
84 | <ColumnDefinition Width="6*"/> |
||
85 | <ColumnDefinition Width="4*"/> |
||
86 | </Grid.ColumnDefinitions>
|
||
87 | <telerik:RadSlider x:Name="sliderPages" Value="{Binding Path=CurrentValue}" Maximum="{Binding Path=PagesCount}" |
||
88 | telerik:StyleManager.Theme="Office2016" Margin="5" HandlesVisibility="Visible" |
||
89 | IsMoveToPointEnabled="True" IsSnapToTickEnabled="True" TickFrequency="1" SmallChange="1" Minimum="1" |
||
90 | ValueChanged="sliderPages_ValueChanged" ThumbStyle="{StaticResource CustomThumbStyle}" |
||
91 | VerticalAlignment="Center" |
||
92 | MiddleThumbClickMode="None" Cursor="Hand" DragCompleted="sliderPages_DragCompleted" |
||
93 | DragStarted="sliderPages_DragStarted" HorizontalAlignment="Stretch" /> |
||
94 | <TextBlock Grid.Column="1" Text="{Binding Value,StringFormat='Page No:{0}', ElementName=sliderPages}" VerticalAlignment="Center" |
||
95 | Margin="4"/> |
||
96 | </Grid>
|
||
97 | </Border>
|
||
98 | |||
99 | <Border Grid.Row="2"> |
||
100 | <!--<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">-->
|
||
101 | <Grid>
|
||
102 | <Grid.ColumnDefinitions>
|
||
103 | <ColumnDefinition Width="6*"/> |
||
104 | <ColumnDefinition Width="4*"/> |
||
105 | </Grid.ColumnDefinitions>
|
||
106 | |||
107 | <ProgressBar Name="ProgressState" telerik:StyleManager.Theme="Office2016" Margin="3"/> |
||
108 | </Grid>
|
||
109 | </Border>
|
||
110 | <TextBlock Grid.Row="1" Height="23" HorizontalAlignment="Left" Margin="100,164,0,0" |
||
111 | Foreground="Red" VerticalAlignment="Top" x:Name="testMsg"/> |
||
112 | </Grid>
|
||
113 | </telerik:GroupBox>
|
||
114 | </Border>
|
||
115 | |||
116 | <Border Grid.Row="1" Grid.Column="1" BorderBrush="#232323" BorderThickness="0,0,0,0"> |
||
117 | <Grid>
|
||
118 | <Grid.RowDefinitions>
|
||
119 | <RowDefinition Height="100"/> |
||
120 | <RowDefinition Height="60"/> |
||
121 | 0b75c341 | taeseongkim | <RowDefinition Height="60"/> |
122 | 787a4489 | KangIngu | <RowDefinition Height="80"/> |
123 | <RowDefinition Height="80"/> |
||
124 | <RowDefinition Height="7*"/> |
||
125 | </Grid.RowDefinitions>
|
||
126 | |||
127 | <telerik:GroupBox Header="Print Option" Margin="3" telerik:StyleManager.Theme="Office2016"> |
||
128 | <Grid>
|
||
129 | <Grid.RowDefinitions>
|
||
130 | <RowDefinition Height="Auto" /> |
||
131 | <RowDefinition Height="Auto" MinHeight="50" /> |
||
132 | </Grid.RowDefinitions>
|
||
133 | <!--<StackPanel HorizontalAlignment="Stretch" Orientation="Horizontal">
|
||
134 | <telerik:RadRadioButton Content="Current page" telerik:StyleManager.Theme="Office2016" Margin="2"/>
|
||
135 | <telerik:RadRadioButton Content="Range of print" telerik:StyleManager.Theme="Office2016" Margin="2"/>
|
||
136 | <telerik:RadRadioButton Content="User defined" telerik:StyleManager.Theme="Office2016" Margin="2"/>
|
||
137 | <telerik:RadRadioButton Content="All pages" telerik:StyleManager.Theme="Office2016" Margin="2"/>
|
||
138 | </StackPanel>-->
|
||
139 | <StackPanel Orientation="Horizontal" HorizontalAlignment="Right"> |
||
140 | <CheckBox x:Name="chkOnlyMarkup" IsChecked="True" HorizontalAlignment="Right" |
||
141 | VerticalAlignment="Center" FontSize="10" FontWeight="Bold" telerik:StyleManager.Theme="Office2016" |
||
142 | Margin="0,5,4,0" Foreground="Black" Grid.Row="0" |
||
143 | Checked="chkOnlyMarkup_Checked" Unchecked="chkOnlyMarkup_Checked"> |
||
144 | <CheckBox.Content>
|
||
145 | <TextBlock Text="Commented Page only" Margin="0,-2,0,0" FontSize="12"/> |
||
146 | </CheckBox.Content>
|
||
147 | </CheckBox>
|
||
148 | <!--<CheckBox IsChecked="True" HorizontalAlignment="Right"
|
||
149 | VerticalAlignment="Center" FontSize="10" FontWeight="Bold" telerik:StyleManager.Theme="Office2016"
|
||
150 | Margin="0,5,4,0" Foreground="Black" Grid.Row="0">
|
||
151 | <CheckBox.Content>
|
||
152 | <TextBlock Text="User Color" Margin="0,-2,0,0" FontSize="12"/>
|
||
153 | </CheckBox.Content>
|
||
154 | </CheckBox>-->
|
||
155 | </StackPanel>
|
||
156 | |||
157 | <StackPanel Orientation="Horizontal" Grid.Row="1" > |
||
158 | <telerik:RadRadioButton Tag="Current" Content="Current" telerik:StyleManager.Theme="Office2016" Margin="5" |
||
159 | Name="btCurrentPages" Grid.Row="1" Checked="PageSelect_Checked" IsChecked="True"/> |
||
160 | <telerik:RadRadioButton Tag="RangePrint" Grid.Column="1" Content="Range of Print" telerik:StyleManager.Theme="Office2016" |
||
161 | Margin="5" Name="btRagePages" Grid.Row="1" Checked="PageSelect_Checked"/> |
||
162 | <telerik:RadRadioButton Tag="UserDefined" Grid.Column="2" Content="User defined" telerik:StyleManager.Theme="Office2016" |
||
163 | Margin="5" Grid.Row="1" Checked="PageSelect_Checked"/> |
||
164 | <telerik:RadRadioButton Tag="AllPrint" Grid.Column="3" Content="All Pages" telerik:StyleManager.Theme="Office2016" |
||
165 | Margin="5" Grid.Row="1" Checked="PageSelect_Checked"/> |
||
166 | </StackPanel>
|
||
167 | |||
168 | </Grid>
|
||
169 | </telerik:GroupBox>
|
||
170 | 0b75c341 | taeseongkim | <telerik:GroupBox x:Name="Selected_PEMSS" telerik:StyleManager.Theme="Office2016" Grid.Row="1" Header="Selected PEMSS" Margin="3"> |
171 | <Grid>
|
||
172 | <Grid.ColumnDefinitions>
|
||
173 | <ColumnDefinition/> |
||
174 | <ColumnDefinition/> |
||
175 | </Grid.ColumnDefinitions>
|
||
176 | <StackPanel Orientation="Horizontal"> |
||
177 | <TextBlock Text="정합성 Comment 출력" VerticalAlignment="Center"/> |
||
178 | <CheckBox VerticalAlignment="Center" Margin="10,0" x:Name="IsRequirement"/> |
||
179 | </StackPanel>
|
||
180 | <StackPanel Orientation="Horizontal" Grid.Column="1"> |
||
181 | <TextBlock Text="Bidders Comment 출력" VerticalAlignment="Center"/> |
||
182 | <CheckBox VerticalAlignment="Center" Margin="10,0" x:Name="IsBidders"/> |
||
183 | </StackPanel>
|
||
184 | </Grid>
|
||
185 | </telerik:GroupBox>
|
||
186 | 787a4489 | KangIngu | <!--프린트 범위-->
|
187 | 0b75c341 | taeseongkim | <telerik:GroupBox x:Name="Selected_Print" telerik:StyleManager.Theme="Office2016" Grid.Row="2" Header="Selected Print" Margin="3"> |
188 | 787a4489 | KangIngu | <Grid>
|
189 | <telerik:RadComboBox x:Name="cbPrint" Width="300" telerik:StyleManager.Theme="Office2016" HorizontalAlignment="Left"></telerik:RadComboBox> |
||
190 | </Grid>
|
||
191 | </telerik:GroupBox>
|
||
192 | |||
193 | 0b75c341 | taeseongkim | <telerik:GroupBox telerik:StyleManager.Theme="Office2016" Grid.Row="3" Header="Print Range" Margin="3"> |
194 | 787a4489 | KangIngu | <Grid x:Name="rangeView"> |
195 | <!--Current Grid Start-->
|
||
196 | <Grid Name="GridCurrentPage" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,0,0,0" |
||
197 | Visibility="Visible"> |
||
198 | <StackPanel>
|
||
199 | <TextBlock Text="Print out the page currently displayed on the screen !"/> |
||
200 | <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="5"> |
||
201 | <TextBlock Text="Current Page : "/> |
||
202 | <TextBlock Text="{Binding Value,StringFormat=' {0}', ElementName=sliderPages}" Foreground="#FF45BAFF" |
||
203 | FontWeight="Bold"/> |
||
204 | </StackPanel>
|
||
205 | </StackPanel>
|
||
206 | </Grid>
|
||
207 | <!--Current Grid End-->
|
||
208 | <!--Range of Print Start-->
|
||
209 | <Grid Name="GridRangePages" VerticalAlignment="Center" HorizontalAlignment="Center" Visibility="Collapsed" Margin="0,0,0,0"> |
||
210 | <Grid.ColumnDefinitions>
|
||
211 | <ColumnDefinition Width="Auto"/> |
||
212 | <ColumnDefinition/> |
||
213 | <ColumnDefinition/> |
||
214 | <ColumnDefinition/> |
||
215 | </Grid.ColumnDefinitions>
|
||
216 | <TextBlock Text="Select Page Number : " VerticalAlignment="Center"/> |
||
217 | <telInput:RadNumericUpDown Grid.Column="1" Name="stPageNo" NumberDecimalDigits="0" ValueChanged="PageNo_ValueChanged" |
||
218 | telerik:StyleManager.Theme="Office2016" Minimum="1"/> |
||
219 | <TextBlock Text="~" Grid.Column="2" VerticalAlignment="Center"/> |
||
220 | <telInput:RadNumericUpDown Grid.Column="3" Name="edPageNo" NumberDecimalDigits="0" ValueChanged="PageNo_ValueChanged" |
||
221 | telerik:StyleManager.Theme="Office2016" Minimum="1" /> |
||
222 | </Grid>
|
||
223 | <!--Range of Print End-->
|
||
224 | <!--User defined Start-->
|
||
225 | <Grid Name="GridDefinePages" VerticalAlignment="Center" HorizontalAlignment="Stretch" Visibility="Collapsed" Margin="0,0,0,0"> |
||
226 | <Border>
|
||
227 | <Grid>
|
||
228 | <Grid.ColumnDefinitions>
|
||
229 | <ColumnDefinition Width="Auto"/> |
||
230 | <ColumnDefinition Width="3*"/> |
||
231 | <ColumnDefinition Width="2*"/> |
||
232 | </Grid.ColumnDefinitions>
|
||
233 | <Grid.RowDefinitions>
|
||
234 | <RowDefinition Height="Auto"/> |
||
235 | <RowDefinition Height="Auto"/> |
||
236 | </Grid.RowDefinitions>
|
||
237 | <TextBlock Text="Input Page Number" VerticalAlignment="Center" |
||
238 | Margin="10,0" /> |
||
239 | <TextBox Name="txtDefinedPages" Grid.Column="1" Margin="2" |
||
240 | TextChanged="txtDefinedPages_TextChanged" |
||
241 | Text="{Binding Path=DefinedPagesStrings,Mode=TwoWay,ValidatesOnExceptions=True, |
||
242 | NotifyOnValidationError=True}"/> |
||
243 | <telerik:RadButton x:Name="btnClearDefinedPages" Content="Clear" Grid.Column="2" Margin="2" |
||
244 | telerik:StyleManager.Theme="Office2016" Click="btnClearDefinedPages_Click"/> |
||
245 | <TextBlock Grid.Row="1" Grid.ColumnSpan="3" |
||
246 | HorizontalAlignment="Center" Margin="5,5"> |
||
247 | <TextBlock.Inlines>
|
||
248 | <Run>Enter page numbers and / or page ranges</Run> |
||
249 | <LineBreak/> |
||
250 | <Run>separated by commas</Run> |
||
251 | <Underline>
|
||
252 | <Run Foreground="Red" FontSize="11">[For example, 1,3,5-12]</Run> |
||
253 | </Underline>
|
||
254 | </TextBlock.Inlines>
|
||
255 | </TextBlock>
|
||
256 | </Grid>
|
||
257 | </Border>
|
||
258 | </Grid>
|
||
259 | <!--User defined Start-->
|
||
260 | <!--All Pages Start-->
|
||
261 | <Grid Name="GridAllPages" VerticalAlignment="Center" HorizontalAlignment="Center" |
||
262 | Grid.Row="2" Visibility="Collapsed" Margin="0,0,0,0"> |
||
263 | <StackPanel>
|
||
264 | <TextBlock Text="Indicates all of the pages in the current document are to be printed." TextWrapping="Wrap" |
||
265 | TextAlignment="Center"/> |
||
266 | <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="3"> |
||
267 | <TextBlock Text="Document Pages : " Foreground="#FF006AC1"/> |
||
268 | <TextBlock Text="{Binding Path=PagesCount}" Foreground="#FF45BAFF" |
||
269 | FontWeight="Bold"/> |
||
270 | </StackPanel>
|
||
271 | </StackPanel>
|
||
272 | </Grid>
|
||
273 | <!--All Pages End-->
|
||
274 | </Grid>
|
||
275 | </telerik:GroupBox>
|
||
276 | <!--프린트 범위-->
|
||
277 | |||
278 | 0b75c341 | taeseongkim | <telerik:GroupBox telerik:StyleManager.Theme="Office2016" Grid.Row="4" Margin="3" Header="Commented Pages(Click To Select Page)"> |
279 | 787a4489 | KangIngu | <ListBox telerik:StyleManager.Theme="Office2016" x:Name="CommentPageList" Foreground="Black" |
280 | ScrollViewer.HorizontalScrollBarVisibility="Auto" |
||
281 | SelectionChanged="CommentPageList_SelectionChanged"> |
||
282 | <ListBox.ItemsPanel>
|
||
283 | <ItemsPanelTemplate>
|
||
284 | <wrappanel:WrapPanel Orientation="Horizontal" VerticalAlignment="Center"/> |
||
285 | </ItemsPanelTemplate>
|
||
286 | </ListBox.ItemsPanel>
|
||
287 | <ListBox.ItemTemplate>
|
||
288 | <DataTemplate>
|
||
289 | <Border Background="#FF45BA44" BorderThickness="0.5" BorderBrush="#232323" Width="20" Height="20"> |
||
290 | <TextBlock Text="{Binding PageNumber}" Foreground="White" VerticalAlignment="Center" Margin="2" |
||
291 | HorizontalAlignment="Center"/> |
||
292 | </Border>
|
||
293 | </DataTemplate>
|
||
294 | </ListBox.ItemTemplate>
|
||
295 | </ListBox>
|
||
296 | </telerik:GroupBox>
|
||
297 | |||
298 | 0b75c341 | taeseongkim | <Border Grid.Row="5" Margin="3"> |
299 | 787a4489 | KangIngu | <Grid>
|
300 | <Grid.RowDefinitions>
|
||
301 | <RowDefinition Height="8.5*"/> |
||
302 | <RowDefinition Height="1.5*"/> |
||
303 | </Grid.RowDefinitions>
|
||
304 | <telerik:GroupBox telerik:StyleManager.Theme="Office2016" Grid.Row="0" Margin="0" |
||
305 | Header="Commented User list"> |
||
306 | <telerik:RadGridView Grid.Row="0" telerik:StyleManager.Theme="Office2016" IsFilteringAllowed="False" ScrollViewer.VerticalScrollBarVisibility="Auto" |
||
307 | AutoGenerateColumns="False" ShowGroupPanel="False" ShowGroupFooters="False" |
||
308 | CanUserDeleteRows="True" CanUserInsertRows="False" EditTriggers="TextInput" |
||
309 | RowIndicatorVisibility="Collapsed" x:Name="gridViewMarkup" Margin="2" |
||
310 | SelectionChanged="gridViewMarkup_SelectionChanged" BorderBrush="#232323" BorderThickness="0.5" |
||
311 | SelectionMode="Multiple" Background="White" SelectionUnit="FullRow" IsBusy="False"> |
||
312 | <telerik:RadGridView.Columns>
|
||
313 | <telerik:GridViewSelectColumn /> |
||
314 | <telerik:GridViewDataColumn Header="Color" IsReadOnly="True"> |
||
315 | <telerik:GridViewDataColumn.CellTemplate>
|
||
316 | <DataTemplate>
|
||
317 | <Grid Background="AliceBlue"> |
||
318 | <!--<Rectangle Fill="{Binding DisplayColor, Converter={StaticResource StringToColorConverter}}" />-->
|
||
319 | <Rectangle Fill="{Binding DisplayColor}" /> |
||
320 | <TextBlock Text="Color" Foreground="#00000000"/> |
||
321 | </Grid>
|
||
322 | </DataTemplate>
|
||
323 | </telerik:GridViewDataColumn.CellTemplate>
|
||
324 | </telerik:GridViewDataColumn>
|
||
325 | |||
326 | <telerik:GridViewDataColumn Width="1*" DataMemberBinding="{Binding Depatment}" Header="Department" IsReadOnly="True"/> |
||
327 | <telerik:GridViewDataColumn Width="1*" DataMemberBinding="{Binding UserName}" Header="User Name" IsReadOnly="True"/> |
||
328 | <telerik:GridViewDataColumn Width="0.5*" DataMemberBinding="{Binding PageCount}" Header="Pages" IsReadOnly="True"/> |
||
329 | <telerik:GridViewDataColumn Width="1*" DataMemberBinding="{Binding Description}" Header="Descriptions" IsReadOnly="True"/> |
||
330 | |||
331 | </telerik:RadGridView.Columns>
|
||
332 | </telerik:RadGridView>
|
||
333 | </telerik:GroupBox>
|
||
334 | <Border Grid.Row="1"> |
||
335 | <Grid>
|
||
336 | <Grid.ColumnDefinitions>
|
||
337 | <ColumnDefinition/> |
||
338 | <ColumnDefinition/> |
||
339 | <ColumnDefinition/> |
||
340 | <ColumnDefinition/> |
||
341 | <!--강인구 추가(Export)-->
|
||
342 | <ColumnDefinition/> |
||
343 | |||
344 | </Grid.ColumnDefinitions>
|
||
345 | <Border Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="2" Margin="0"> |
||
346 | <Grid>
|
||
347 | <Grid.ColumnDefinitions>
|
||
348 | <ColumnDefinition Width="7*"/> |
||
349 | <ColumnDefinition Width="3*"/> |
||
350 | </Grid.ColumnDefinitions>
|
||
351 | </Grid>
|
||
352 | </Border>
|
||
353 | <telerik:RadButton x:Name="btnWholePrint" Content="Print" Grid.Row="4" Grid.Column="2" Margin="0" |
||
354 | telerik:StyleManager.Theme="Office2016" Background="#FF45BAFF" Foreground="White" |
||
355 | Click="PrintMethod"/> |
||
356 | <!--강인구 추가(Export)-->
|
||
357 | <telerik:RadButton x:Name="btnWholeExport" Content="Export" Grid.Row="4" Grid.Column="2" Margin="0" |
||
358 | telerik:StyleManager.Theme="Office2016" Background="#FF45BAFF" Foreground="White" |
||
359 | Click="ExportMethod" Visibility="Collapsed"/> |
||
360 | |||
361 | <Border Grid.Row="4" Grid.Column="0" Grid.ColumnSpan="2" Margin="0"> |
||
362 | <Grid>
|
||
363 | <Grid.RowDefinitions>
|
||
364 | <RowDefinition/> |
||
365 | <RowDefinition/> |
||
366 | </Grid.RowDefinitions>
|
||
367 | <Grid.ColumnDefinitions>
|
||
368 | <ColumnDefinition Width="7*"/> |
||
369 | <ColumnDefinition Width="3*"/> |
||
370 | </Grid.ColumnDefinitions>
|
||
371 | </Grid>
|
||
372 | </Border>
|
||
373 | </Grid>
|
||
374 | </Border>
|
||
375 | </Grid>
|
||
376 | </Border>
|
||
377 | </Grid>
|
||
378 | </Border>
|
||
379 | <telerik:RadBusyIndicator x:Name="printIndy" |
||
380 | Grid.Row="1" |
||
381 | Grid.ColumnSpan="2" |
||
382 | VerticalAlignment="Stretch" |
||
383 | BorderThickness="0" |
||
384 | BusyContent="Printing. . ." |
||
385 | IsBusy="False" |
||
386 | 0b75c341 | taeseongkim | telerik:StyleManager.Theme="Office2016"/> |
387 | 787a4489 | KangIngu | </Grid>
|
388 | </UserControl> |