ExportBulkWindow.xaml 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <Window x:Class="ivf_tl_Manage.Win.ExportBulkWindow"
  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. xmlns:controls="clr-namespace:ivf_tl_Manage.UserControls"
  9. mc:Ignorable="d"
  10. FontFamily="{StaticResource sourceHan}"
  11. WindowStyle="None"
  12. ShowInTaskbar="False"
  13. WindowStartupLocation="CenterOwner"
  14. Background="Transparent"
  15. AllowsTransparency="True"
  16. Width="790" Height="906">
  17. <Canvas Width="790" Height="906">
  18. <Canvas.Background>
  19. <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/ExportWindowBackGround1.png"/>
  20. </Canvas.Background>
  21. <DockPanel Canvas.Left="60" Canvas.Top="57">
  22. <TextBlock Margin="2 0 2 3" DockPanel.Dock="Top" Canvas.Left="60" Canvas.Top="57" Text="{DynamicResource 0062}" FontWeight="Medium" FontSize="20"/>
  23. <Rectangle DockPanel.Dock="Bottom" Canvas.Left="59" Canvas.Top="89" Height="3" RadiusX="1.5" RadiusY="1.5" Fill="#4D75AC"/>
  24. </DockPanel>
  25. <Canvas Canvas.Left="60" Canvas.Top="80" x:Name="_canvas" Width="670" Height="670">
  26. <Canvas.Background>
  27. <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/ExportDishBackground.png"/>
  28. </Canvas.Background>
  29. <Ellipse Canvas.Left="160" Canvas.Top="160" Width="350" Height="350" StrokeThickness="2" Stroke="#2D5FA5" Fill="#4D75AC"/>
  30. <Image x:Name="bigImag" Canvas.Left="170" Canvas.Top="170" Width="330" Height="330"/>
  31. </Canvas>
  32. <customControl:CheckBoxCustom x:Name="_all_CheckBox" Canvas.Left="56" Canvas.Top="102" FontWeight="Medium" Foreground="#9B9B9B" FontSize="16" Content="{DynamicResource 0207}"
  33. Checked="_all_CheckBox_Checked" Unchecked="_all_CheckBox_Unchecked"
  34. CheckImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CheckRadioButtonIcon.png"/>
  35. <customControl:ButtonImage Canvas.Left="720" Canvas.Top="60" Width="18" Height="18" Click="Cancel_Click" IsCancel="True"
  36. IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CloseGrayIcon.png"
  37. MouseOverIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CloseBlueIcon.png"/>
  38. <customControl:ButtonCornerRadius x:Name="_SourcePicImage" Canvas.Left="96" Canvas.Top="750" Width="194" Height="96" MarginMask="20" Click="ExportSourcePic_Click">
  39. <customControl:ButtonCornerRadius.Background>
  40. <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/PicImageSourceIcon1.png"/>
  41. </customControl:ButtonCornerRadius.Background>
  42. <customControl:ButtonCornerRadius.Content>
  43. <StackPanel Orientation="Horizontal">
  44. <Image Width="34" Height="36" Source="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/PicImageEcportIcon1.png"/>
  45. <TextBlock Margin="5 0 0 0" VerticalAlignment="Center" TextAlignment="Center" Text="{DynamicResource 0501}" FontSize="12" Foreground="White" FontWeight="Medium"/>
  46. </StackPanel>
  47. </customControl:ButtonCornerRadius.Content>
  48. </customControl:ButtonCornerRadius>
  49. <customControl:ButtonCornerRadius Canvas.Left="299" Canvas.Top="750" Width="194" Height="96" MarginMask="20" Click="ExportPic_Click">
  50. <customControl:ButtonCornerRadius.Background>
  51. <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/PicImageSourceIcon1.png"/>
  52. </customControl:ButtonCornerRadius.Background>
  53. <customControl:ButtonCornerRadius.Content>
  54. <StackPanel Orientation="Horizontal">
  55. <Image Width="34" Height="36" Source="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/PicImageEcportIcon1.png"/>
  56. <TextBlock Margin="5 0 0 0" VerticalAlignment="Center" TextAlignment="Center" Text="{DynamicResource 0212}" FontSize="12" Foreground="White" FontWeight="Medium"/>
  57. </StackPanel>
  58. </customControl:ButtonCornerRadius.Content>
  59. </customControl:ButtonCornerRadius>
  60. <customControl:ButtonCornerRadius x:Name="ImageCustom_ExportVideo" Canvas.Left="502" Canvas.Top="750" Width="194" Height="96" MarginMask="20" Click="ExportVideo_Click">
  61. <customControl:ButtonCornerRadius.Background>
  62. <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/PicImageSourceIcon1.png"/>
  63. </customControl:ButtonCornerRadius.Background>
  64. <customControl:ButtonCornerRadius.Content>
  65. <StackPanel Orientation="Horizontal">
  66. <Image Width="34" Height="36" Source="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/ExportVideoImageIcon1.png"/>
  67. <TextBlock Margin="5 0 0 0" VerticalAlignment="Center" TextAlignment="Center" Text="{DynamicResource 0502}" FontSize="12" Foreground="White" FontWeight="Medium"/>
  68. </StackPanel>
  69. </customControl:ButtonCornerRadius.Content>
  70. </customControl:ButtonCornerRadius>
  71. <!--<customControl:ImageCustom Visibility="Collapsed" Canvas.Left="96" Canvas.Top="750" Width="193" Height="96" MouseUp="ExportSourcePic_MouseUp"
  72. IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/ExportWindowSourcePic.png"
  73. MouseOverIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/ExportWindowSourceMouseOverPic.png"/>
  74. <customControl:ImageCustom Visibility="Collapsed" Canvas.Left="299" Canvas.Top="750" Width="193" Height="96" MouseUp="ExportPic_MouseUp"
  75. IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/ExportPicImageIcon.png"
  76. MouseOverIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/ExportPicImageMouseOverIcon.png"/>
  77. <customControl:ImageCustom Visibility="Collapsed" Canvas.Left="502" Canvas.Top="750" Width="193" Height="96" MouseUp="ExportVideo_MouseUp"
  78. IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/ExportVideoImageIcon.png"
  79. MouseOverIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/ExportVideoImageMouseOverIcon.png"/>-->
  80. <Button/>
  81. </Canvas>
  82. </Window>