| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <UserControl x:Class="ivf_tl_Manage.Views.PdfView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:ivf_tl_Manage.Views"
- mc:Ignorable="d"
- xmlns:customUserControl="clr-namespace:ivf_tl_Manage.UserControls"
- xmlns:customControl="clr-namespace:ivf_tl_CustomControls;assembly=ivf_tl_CustomControls_PC"
- FontFamily="{StaticResource sourceHan}">
- <Canvas Width="1830" Height="1015" x:Name="Canvas_Root">
- <StackPanel x:Name="_nav_StackPanel" Canvas.Left="40" Canvas.Top="37" Orientation="Horizontal" Panel.ZIndex="2000"/>
- <customControl:ButtonBottomImage x:Name="Export_ButtonBottomImage" Canvas.Left="43" Canvas.Top="110" IconWidth="80" IconHeight="82" IconMargin="0 -8 0 0" Click="Export_Click" Content="{DynamicResource 0062}" FontWeight="Medium" FontSize="24" Foreground="#707070" EnabledForeground="#707070" MouseOverForeground="#4D4D4D" IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/DetailExportIcon.png" MouseOverIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/DetailExportMouseIcon.png" EnabledIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/DetailExportIcon.png"/>
- <customControl:ButtonBottomImage RenderOptions.BitmapScalingMode="HighQuality" Canvas.Left="38" Canvas.Top="230" IconWidth="80" IconHeight="82" IconMargin="0 -8 0 0" Click="Mark_Click" Content="{DynamicResource 0159}" FontWeight="Medium" FontSize="24" Foreground="#707070" MouseOverForeground="#4D4D4D" IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/DetailMarkButtonIcon.png" MouseOverIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/DetailMarkMouseIcon.png" />
- <customControl:ButtonImage Canvas.Left="1760" Canvas.Top="50" Width="34" Height="34" Click="ZoomMax_Click" IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/zoomMax.png" MouseOverIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/zoomMaxMouseOver.png"/>
- <customControl:ButtonImage Canvas.Left="1700" Canvas.Top="50" Width="34" Height="34" Click="ZoomMin_Click" IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/zoomMin.png" MouseOverIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/zoomMinMouseOver.png"/>
- <Border CornerRadius="10" BorderThickness="5" BorderBrush="#4d75ac"
- Canvas.Left="180" Canvas.Top="100" Width="1630" Height="885" Background="#eeeeee">
- <Border.Effect>
- <DropShadowEffect BlurRadius="15" Direction="0" ShadowDepth="0" Opacity="0.5"/>
- </Border.Effect>
- <ScrollViewer x:Name="parent" Background="Transparent" Width="1620" Height="875" Panel.ZIndex="2" FocusVisualStyle="{x:Null}" Padding="0" PanningMode="Both" VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled" ManipulationBoundaryFeedback="ScrollViewer_ManipulationBoundaryFeedback" Style="{StaticResource DefaultScrollViewer1}">
- <StackPanel x:Name="image" Background="Transparent">
- <StackPanel.RenderTransform>
- <TransformGroup>
- <ScaleTransform/>
- <TranslateTransform/>
- </TransformGroup>
- </StackPanel.RenderTransform>
- <!--<Rectangle Fill="Red" Width="100" Height="300" Margin="20"/>
- <Rectangle Fill="Red" Width="100" Height="300" Margin="20"/>
- <Rectangle Fill="Red" Width="100" Height="300" Margin="20"/>
- <Rectangle Fill="Red" Width="100" Height="300" Margin="20"/>-->
- </StackPanel>
- </ScrollViewer>
- </Border>
- <!--<Border x:Name="parent" Canvas.Left="200" Canvas.Top="168" Width="862" Height="571" Background="LightGreen">
- <StackPanel x:Name="image" Background="Black">
- <StackPanel.RenderTransform>
- <TransformGroup>
- <ScaleTransform/>
- <TranslateTransform/>
- </TransformGroup>
- </StackPanel.RenderTransform>
- <Rectangle Fill="Red" Width="100" Height="300" Margin="20"/>
- <Rectangle Fill="Red" Width="100" Height="300" Margin="20"/>
- <Rectangle Fill="Red" Width="100" Height="300" Margin="20"/>
- <Rectangle Fill="Red" Width="100" Height="300" Margin="20"/>
- </StackPanel>
- </Border>-->
- </Canvas>
- </UserControl>
|