ExportDishWindow.xaml 7.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <Window x:Class="ivf_tl_Manage.Win.ExportDishWindow"
  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="710" Height="379">
  17. <Canvas Width="710" Height="379">
  18. <Canvas.Background>
  19. <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/AlarmSettingWindowBackground.png"/>
  20. </Canvas.Background>
  21. <TextBlock x:Name="_title_TextBlock" Canvas.Left="60" Canvas.Top="57" Text="{DynamicResource 0062}" FontWeight="Medium" Foreground="Black" FontSize="20"/>
  22. <Rectangle Canvas.Left="58" Canvas.Top="90" Width="44" Height="2" Fill="#4D75AC" RadiusX="1" RadiusY="1"/>
  23. <customControl:ImageCustom Canvas.Left="634" Canvas.Top="60" Width="18" Height="18" MouseUp="Cancel_MouseUp"
  24. IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CloseGrayIcon.png"
  25. MouseOverIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CloseBlueIcon.png"/>
  26. <!--MarkDefeatIcon--> <!--CheckRadioButtonIcon-->
  27. <StackPanel Canvas.Left="60" Canvas.Top="90" Width="590">
  28. <Grid>
  29. <Grid.ColumnDefinitions>
  30. <ColumnDefinition Width="110"/>
  31. <ColumnDefinition/>
  32. </Grid.ColumnDefinitions>
  33. <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
  34. <TextBlock Margin="3 0 0 0" VerticalAlignment="Center" DockPanel.Dock="Left" Canvas.Left="73" Canvas.Top="115" FontWeight="Medium" Foreground="#707070" FontSize="16" >
  35. <Run Text="{DynamicResource 0597}"/><Run Text=":"/>
  36. </TextBlock>
  37. </StackPanel>
  38. <StackPanel Grid.Column="1" Margin="5 0 0 0" Orientation="Horizontal">
  39. <CheckBox IsChecked="True" FontWeight="Medium" Foreground="#707070" FontSize="18" Content="{DynamicResource 0027}" VerticalContentAlignment="Center" Style="{DynamicResource CheckBoxStyle2}"
  40. x:Name="_all_CheckBox1" Unchecked="All_UnChecked" Checked="All_Checked" Height="56"/>
  41. <CheckBox Margin="10 0 0 0" IsChecked="True" FontWeight="Medium" Foreground="#707070" FontSize="18" Content="{DynamicResource 0041}" VerticalContentAlignment="Center" Style="{DynamicResource CheckBoxStyle2}"
  42. x:Name="_rem_CheckBox1" Unchecked="Rem_UnChecked" Checked="Rem_Checked" Height="56"/>
  43. <CheckBox Margin="10 0 0 0" IsChecked="True" FontWeight="Medium" Foreground="#707070" FontSize="18" Content="{DynamicResource 0040}" VerticalContentAlignment="Center" Style="{DynamicResource CheckBoxStyle2}"
  44. x:Name="_len_CheckBox1" Unchecked="Len_UnChecked" Checked="Len_Checked" Height="56"/>
  45. <CheckBox Margin="10 0 0 0" IsChecked="True" FontWeight="Medium" Foreground="#707070" FontSize="18" Content="{DynamicResource 0042}" VerticalContentAlignment="Center" Style="{DynamicResource CheckBoxStyle2}"
  46. x:Name="_fei_CheckBox1" Unchecked="Fei_UnChecked" Checked="Fei_Checked" Height="56"/>
  47. </StackPanel>
  48. </Grid>
  49. <StackPanel Orientation="Horizontal" Margin="113 0 0 0">
  50. <CheckBox Margin="0 0 0 0" IsChecked="True" FontWeight="Medium" Foreground="#707070" FontSize="18" Content="{DynamicResource 0043}" VerticalContentAlignment="Center" Style="{DynamicResource CheckBoxStyle2}"
  51. x:Name="_san_CheckBox1" Unchecked="San_UnChecked" Checked="San_Checked" Height="56"/>
  52. <CheckBox Margin="10 0 0 0" IsChecked="True" FontWeight="Medium" Foreground="#707070" FontSize="18" Content="{DynamicResource 0616}" VerticalContentAlignment="Center" Style="{DynamicResource CheckBoxStyle2}"
  53. x:Name="_wei_CheckBox1" Unchecked="Wei_UnChecked" Checked="Wei_Checked" Height="56"/>
  54. </StackPanel>
  55. <Grid Margin="0 15 0 0 ">
  56. <Grid.ColumnDefinitions>
  57. <ColumnDefinition Width="110"/>
  58. <ColumnDefinition/>
  59. </Grid.ColumnDefinitions>
  60. <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
  61. <TextBlock Margin="3 0 0 0" VerticalAlignment="Center" DockPanel.Dock="Left" Canvas.Left="73" Canvas.Top="115" FontWeight="Medium" Foreground="#707070" FontSize="16" >
  62. <Run Text="{DynamicResource 0617}"/><Run Text=":"/>
  63. </TextBlock>
  64. </StackPanel>
  65. <StackPanel Grid.Column="1" Margin="5 0 0 0" Orientation="Horizontal">
  66. <customControl:TextBoxCustom Grid.Column="1" VerticalAlignment="Center" Width="410"
  67. x:Name="_dirName_TextBox" Height="34" DefeatString="{DynamicResource 0618}" />
  68. <customControl:ButtonCornerRadius Margin="5 0 0 0" x:Name="_exportDish" Width="60" Height="34" Content="..." FontSize="18" Click="SelectDir_Click"/>
  69. </StackPanel>
  70. </Grid>
  71. </StackPanel>
  72. <TextBlock x:Name="message" Canvas.Left="134" Canvas.Top="275" Text="" MaxWidth="300" FontWeight="Medium" FontSize="16" Foreground="Red" TextWrapping="Wrap"/>
  73. <customControl:ButtonCornerRadius IsTabStop="False" Canvas.Left="554" Canvas.Top="271" Width="104" Height="56" Click="Ok_Click" IsDefault="True" Content="{DynamicResource 0024}" FontSize="14" MarginMask="10">
  74. <customControl:ButtonCornerRadius.Background>
  75. <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/OkButtonIcon1.png"/>
  76. </customControl:ButtonCornerRadius.Background>
  77. </customControl:ButtonCornerRadius>
  78. <customControl:ButtonCornerRadius IsTabStop="False" Canvas.Left="446" Canvas.Top="271" Width="104" Height="56" Click="Cancel_Click" IsCancel="True" Content="{DynamicResource 0025}" Foreground="#717171" FontSize="14" MarginMask="10">
  79. <customControl:ButtonCornerRadius.Background>
  80. <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CancelButtonIcon1.png"/>
  81. </customControl:ButtonCornerRadius.Background>
  82. </customControl:ButtonCornerRadius>
  83. <!--<customControl:ButtonImage IsTabStop="False" Canvas.Left="446" Canvas.Top="225" Width="104" Height="56" Click="Cancel_Click" IsCancel="True" IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CancelButtonIcon.png" MouseOverIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CancelButtonMouseOverIcon.png"/>-->
  84. <!--<customControl:ButtonImage IsTabStop="False" Canvas.Left="554" Canvas.Top="225" Width="104" Height="56" Click="Ok_Click" IsDefault="True" IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/OkButtonIcon.png" MouseOverIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/OkButtonMouseOverIcon.png"/>-->
  85. </Canvas>
  86. </Window>