| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <Window x:Class="ivf_tl_Manage.Win.ImageSourceWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:ivf_tl_Manage.Win"
- xmlns:customControl="clr-namespace:ivf_tl_CustomControls;assembly=ivf_tl_CustomControls_PC"
- mc:Ignorable="d"
- FontFamily="{StaticResource sourceHan}"
- WindowStyle="None"
- ShowInTaskbar="False"
- WindowStartupLocation="CenterOwner"
- Background="Transparent"
- AllowsTransparency="True"
- Width="1650" Height="968"
- x:Name="_ImageSourceWindow">
- <Canvas Width="1650" Height="968">
- <Canvas.Background>
- <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/ImageSourceWindowBackground.png"/>
- </Canvas.Background>
- <DockPanel Canvas.Left="60" Canvas.Top="57">
- <TextBlock Margin="2 0 2 2" DockPanel.Dock="Top" x:Name="_title_TextBlock" Canvas.Left="60" Canvas.Top="57" Text="Well源图" FontWeight="Medium" Foreground="Black" FontSize="24"/>
- <Rectangle DockPanel.Dock="Bottom" Canvas.Left="58" Canvas.Top="95" Width="98" Height="3" Fill="#4D75AC" RadiusX="1.5" RadiusY="1.5"/>
- </DockPanel>
- <!--<TextBlock x:Name="_title_TextBlock1" Canvas.Left="60" Canvas.Top="57" Text="Well源图" FontWeight="Medium" Foreground="Black" FontSize="24"/>
- <Rectangle Canvas.Left="58" Canvas.Top="95" Width="98" Height="2" Fill="#4D75AC" RadiusX="1" RadiusY="1"/>-->
- <customControl:ButtonImage Canvas.Left="1572" Canvas.Top="60" Width="18" Height="18" Click="Cancel_Click"
- IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CloseGrayIcon.png"
- MouseOverIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CloseBlueIcon.png"/>
- <ScrollViewer Canvas.Left="60" Canvas.Top="179" Width="1550" Height="746" PanningMode="Both"
- HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto" ManipulationBoundaryFeedback="ScrollViewer_ManipulationBoundaryFeedback">
- <WrapPanel x:Name="_root_Canvas" Width="1550">
- <!--<Rectangle Width="210" Height="242" Fill="Red" Margin="0 0 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 0 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 0 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 0 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 0 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 0 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 0 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="0 10 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
-
- <Rectangle Width="210" Height="242" Fill="Red" Margin="0 10 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
- <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>-->
- </WrapPanel>
- </ScrollViewer>
- </Canvas>
- </Window>
|