ImageSourceWindow.xaml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <Window x:Class="ivf_tl_Manage.Win.ImageSourceWindow"
  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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:ivf_tl_Manage.Win"
  7. xmlns:customControl="clr-namespace:ivf_tl_CustomControls;assembly=ivf_tl_CustomControls_PC"
  8. mc:Ignorable="d"
  9. FontFamily="{StaticResource sourceHan}"
  10. WindowStyle="None"
  11. ShowInTaskbar="False"
  12. WindowStartupLocation="CenterOwner"
  13. Background="Transparent"
  14. AllowsTransparency="True"
  15. Width="1650" Height="968"
  16. x:Name="_ImageSourceWindow">
  17. <Canvas Width="1650" Height="968">
  18. <Canvas.Background>
  19. <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/ImageSourceWindowBackground.png"/>
  20. </Canvas.Background>
  21. <DockPanel Canvas.Left="60" Canvas.Top="57">
  22. <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"/>
  23. <Rectangle DockPanel.Dock="Bottom" Canvas.Left="58" Canvas.Top="95" Width="98" Height="3" Fill="#4D75AC" RadiusX="1.5" RadiusY="1.5"/>
  24. </DockPanel>
  25. <!--<TextBlock x:Name="_title_TextBlock1" Canvas.Left="60" Canvas.Top="57" Text="Well源图" FontWeight="Medium" Foreground="Black" FontSize="24"/>
  26. <Rectangle Canvas.Left="58" Canvas.Top="95" Width="98" Height="2" Fill="#4D75AC" RadiusX="1" RadiusY="1"/>-->
  27. <customControl:ButtonImage Canvas.Left="1572" Canvas.Top="60" Width="18" Height="18" Click="Cancel_Click"
  28. IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CloseGrayIcon.png"
  29. MouseOverIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CloseBlueIcon.png"/>
  30. <ScrollViewer Canvas.Left="60" Canvas.Top="179" Width="1550" Height="746" PanningMode="Both"
  31. HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto" ManipulationBoundaryFeedback="ScrollViewer_ManipulationBoundaryFeedback">
  32. <WrapPanel x:Name="_root_Canvas" Width="1550">
  33. <!--<Rectangle Width="210" Height="242" Fill="Red" Margin="0 0 0 0"/>
  34. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 0 0 0"/>
  35. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 0 0 0"/>
  36. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 0 0 0"/>
  37. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 0 0 0"/>
  38. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 0 0 0"/>
  39. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 0 0 0"/>
  40. <Rectangle Width="210" Height="242" Fill="Red" Margin="0 10 0 0"/>
  41. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
  42. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
  43. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
  44. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
  45. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
  46. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
  47. <Rectangle Width="210" Height="242" Fill="Red" Margin="0 10 0 0"/>
  48. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
  49. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
  50. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
  51. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
  52. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>
  53. <Rectangle Width="210" Height="242" Fill="Red" Margin="10 10 0 0"/>-->
  54. </WrapPanel>
  55. </ScrollViewer>
  56. </Canvas>
  57. </Window>