프로젝트

일반

사용자정보

개정판 f65e6c02

IDf65e6c0217de89d4653173b2f16417acc26d5e0a
상위 a1142a6b
하위 b4b23404

김태성이(가) 약 5년 전에 추가함

debug_SNI 추가

Change-Id: I46d431ca15362882a9ab7e8dd7600371f47471de

차이점 보기:

KCOM/Views/MainMenu.xaml
107 107
                                <Popup Name="floatingTip" AllowsTransparency="True" Placement="Relative" PlacementTarget="{Binding ElementName=rect}">
108 108
                                    <TextBlock x:Name="txtBatch" Foreground="Red" FontSize="20" Text="Mark Control을 그립니다."/>
109 109
                                </Popup>
110
                                <telerik:RadBusyIndicator x:Name="busyIndicator" IsBusy="False" BusyContent="Saving...">
111
                                    <ZoomAndPan:ZoomAndPanControl x:Name="zoomAndPanControl"
110
                                <ZoomAndPan:ZoomAndPanControl x:Name="zoomAndPanControl"
112 111
                                                              MouseWheel="zoomAndPanControl_MouseWheel"
113 112
                                                              MouseDown="zoomAndPanControl_MouseDown"
114 113
                                                              MouseMove="zoomAndPanControl_MouseMove"
......
133 132
                                                    <TranslateTransform x:Name="translate" X="0" Y="0"/>
134 133
                                                </TransformGroup>
135 134
                                            </Canvas.RenderTransform>
136
                                            
135

  
137 136
                                            <ItemsControl ItemsSource="{Binding MarkupControls, Source={x:Static common:ViewerDataModel.Instance}}"
138 137
                                          Panel.ZIndex="1">
139 138
                                                <ItemsControl.ItemsPanel>
......
162 161
                                                <!--<MarkupToPDF:RectangleControl Height="200" HorizontalAlignment="Center" Name="rectangle2" StrokeColor="Black" VerticalAlignment="Top" Width="00" FillColor="Red"/>-->
163 162
                                            </InkCanvas>
164 163
                                            <!--강인구 추가-->
165
                                                <!--<controls:ScaleDecodeImage Panel.ZIndex="0" x:Name="mainPanel"
164
                                            <!--<controls:ScaleDecodeImage Panel.ZIndex="0" x:Name="mainPanel"
166 165
                                                   Source="{Binding ImageViewPath,Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}" 
167 166
                                                    Width="{Binding ImageViewWidth,Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
168 167
                                                        Height="{Binding ImageViewHeight,Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}">
169 168
                                                </controls:ScaleDecodeImage>-->
170
                                                <Image Panel.ZIndex="0" x:Name="mainPanel" RenderOptions.BitmapScalingMode="HighQuality"
169
                                            <Image Panel.ZIndex="0" x:Name="mainPanel" RenderOptions.BitmapScalingMode="HighQuality"
171 170
                                                       RenderOptions.EdgeMode="Unspecified" RenderOptions.ClearTypeHint="Enabled"
172 171
                                                        Source="{Binding ImageViewPath,Mode=OneWay, Source={x:Static common:ViewerDataModel.Instance}}" 
173 172
                                                         Width="{Binding ImageViewWidth,Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
174 173
                                                        Height="{Binding ImageViewHeight,Mode=TwoWay, Source={x:Static common:ViewerDataModel.Instance}}"
175 174
                                                           >
176
                                                    </Image>
177
                                                <Canvas x:Name="SelectLayer" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Panel.ZIndex="32766"/>
178
                                                <Border x:Name="dragSelectionBorder" Visibility="Collapsed"
175
                                            </Image>
176
                                            <Canvas x:Name="SelectLayer" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Panel.ZIndex="32766"/>
177
                                            <Border x:Name="dragSelectionBorder" Visibility="Collapsed"
179 178
                                                    BorderBrush="Blue"
180 179
                                                    BorderThickness="1"
181 180
                                                    Background="LightBlue" 
182 181
                                                    CornerRadius="1"
183 182
                                                    Panel.ZIndex="1"
184 183
                                                    Opacity="0.5"/>
185
                                                <Border x:Name="dragCaptureBorder" Visibility="Collapsed"
184
                                            <Border x:Name="dragCaptureBorder" Visibility="Collapsed"
186 185
                                                    BorderBrush="Blue"
187 186
                                                    BorderThickness="1"
188 187
                                                    Background="Blue" 
189 188
                                                    CornerRadius="1"
190 189
                                                    Panel.ZIndex="1"
191 190
                                                    Opacity="0.5"/>
192
                                                
193
                                                <Border x:Name="dragZoomBorder" Visibility="Collapsed"
191

  
192
                                            <Border x:Name="dragZoomBorder" Visibility="Collapsed"
194 193
                                                    BorderThickness="3"
195 194
                                                    Background="Transparent" 
196 195
                                                    CornerRadius="1"
......
214 213
                                                    CornerRadius="1"
215 214
                                                    Panel.ZIndex="1"
216 215
                                                    Opacity="0.5"/>-->
217
                                                <Canvas x:Name="SearchFocusBorder" Visibility="Collapsed"
216
                                            <Canvas x:Name="SearchFocusBorder" Visibility="Collapsed"
218 217
                                                    Background="#50FF5D00" 
219 218
                                                    Panel.ZIndex="99999" IsHitTestVisible="False">
220
                                                    <Border Visibility="Collapsed"
219
                                                <Border Visibility="Collapsed"
221 220
                                                    BorderThickness="1"
222 221
                                                    Background="#50FF5D00" 
223 222
                                                    CornerRadius="1"
224 223
                                                    Panel.ZIndex="99999" IsHitTestVisible="False"
225 224
                                                             Width="{Binding Width, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Canvas}}}"
226 225
                                                            Height="{Binding Height, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Canvas}}}"></Border>
227
                                                </Canvas>
228
                                                <!--<Border Background="Red" Panel.ZIndex="1" Opacity="0.5" Visibility="Visible" Width="100" Height="100" />-->
226
                                            </Canvas>
227
                                            <!--<Border Background="Red" Panel.ZIndex="1" Opacity="0.5" Visibility="Visible" Width="100" Height="100" />-->
229 228
                                        </Canvas>
230 229

  
231 230
                                        <!--<Border Background="Red" Panel.ZIndex="1" Opacity="0.5" Visibility="Visible" Width="1000" Height="1000" IsHitTestVisible="False"/>-->
232 231

  
233 232
                                        <!--<Leadtools_Windows_Controls:RasterImageViewer x:Name="_imageViewer" Grid.Row="1" BorderThickness="0"/>-->
234 233
                                    </Canvas>
235

  
236 234
                                </ZoomAndPan:ZoomAndPanControl>
237
                                </telerik:RadBusyIndicator>
235
                                <telerik:RadBusyIndicator x:Name="busyIndicator" IsBusy="False" BusyContent="Saving..." Visibility="{Binding IsBusy, Converter={StaticResource BoolToVisibleConverter}, RelativeSource={RelativeSource Self}}"/>
238 236
                                <!--캡쳐 화면을 위한 보더-->
239 237
                                <Border Background="LightGray" 
240 238
                                        Opacity="{Binding Capture_Opacity, Source={x:Static common:ViewerDataModel.Instance}}"
......
256 254
                    <telerik:RadPaneGroup Style="{DynamicResource Style_RadPanelGroup}" >
257 255
                        <telerik:RadPane CanFloat="False" CanUserClose="False" Title="Document 1" PaneHeaderVisibility="Collapsed" x:Name="testPanel2" IsHidden="True" Margin="0,-20,0,0" >
258 256
                            <Grid Background="{DynamicResource KCOMColor_DocumnetBackgroundBrush}">
259
                                <ZoomAndPan:ZoomAndPanControl x:Name="zoomAndPanControl2" 
257
                                <ZoomAndPan:ZoomAndPanControl x:Name="zoomAndPanControl2" AllowDrop="True"
260 258
                                                              MouseWheel="zoomAndPanControl2_MouseWheel"
261 259
                                                              MouseMove="zoomAndPanControl2_MouseMove"
262 260
                                                              MouseDown="zoomAndPanControl2_MouseDown"
......
506 504
                <!-- Width="250" MinWidth="250" -->
507 505
                <!--<telerik:RadPaneGroup Margin="0" Style="{DynamicResource Style_RadPanelGroup}">-->
508 506
                <telerik:RadPaneGroup Margin="0" telerik:StyleManager.Theme="Office2016" x:Name="PN_Navi">
509
                    <telerik:RadPane Header="DOCUMENT" CanFloat="False" CanUserClose="False" CanUserPin="True" 
507
                    <telerik:RadPane Header="DOCUMENT" x:Name="radPanelPageNavi" CanFloat="False" telerik:RadDocking.FloatingSize="50,NaN" CanUserClose="False" CanUserPin="True"
510 508
                                     ContextMenuTemplate="{x:Null}" PaneHeaderVisibility="Visible" telerik:StyleManager.Theme="Office2016">
511 509
                        <!--<telerik:RadPane.TitleTemplate>
512 510
                            <DataTemplate>
......
543 541
                        </Grid>
544 542

  
545 543
                    </telerik:RadPane>
544
                    <telerik:RadPane Header="test" CanFloat="False" telerik:RadDocking.FloatingSize="50,NaN" CanUserClose="False" CanUserPin="True"
545
                                     ContextMenuTemplate="{x:Null}" PaneHeaderVisibility="Visible" telerik:StyleManager.Theme="Office2016">
546

  
547
                        <Grid    xmlns:drag="clr-namespace:Telerik.Windows.DragDrop.Behaviors;assembly=Telerik.Windows.Controls" >
548
                            <Grid.Resources>
549
                                <Style TargetType="telerik:RadListBoxItem" BasedOn="{StaticResource RadListBoxItemStyle}">
550
                                    <Setter Property="telerik:DragDropManager.AllowCapturedDrag" Value="True"/>
551
                                </Style>
552
                            </Grid.Resources>
553
                            <telerik:RadListBox x:Name="lstSymbolPrivate" Background="#f5f5f5" FontWeight="Normal"  AllowDrop="True">
554
                                <telerik:RadListBox.DragDropBehavior>
555
                                    <telerik:ListBoxDragDropBehavior AllowReorder="True" />
556
                                </telerik:RadListBox.DragDropBehavior>
557
                                <telerik:RadListBox.DragVisualProvider >
558
                                    <telerik:ListBoxDragVisualProvider />
559
                                </telerik:RadListBox.DragVisualProvider>
560
                            </telerik:RadListBox>
561
                        </Grid>
562

  
563
                    </telerik:RadPane>
564

  
546 565
                </telerik:RadPaneGroup>
547 566
            </telerik:RadSplitContainer>
548 567

  

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)