| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <Window x:Class="ivf_tl_Manage.Win.ExportDishWindow"
- 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"
- xmlns:controls="clr-namespace:ivf_tl_Manage.UserControls"
- mc:Ignorable="d"
- FontFamily="{StaticResource sourceHan}"
- WindowStyle="None"
- ShowInTaskbar="False"
- WindowStartupLocation="CenterOwner"
- Background="Transparent"
- AllowsTransparency="True"
- Width="710" Height="379">
- <Canvas Width="710" Height="379">
- <Canvas.Background>
- <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/AlarmSettingWindowBackground.png"/>
- </Canvas.Background>
- <TextBlock x:Name="_title_TextBlock" Canvas.Left="60" Canvas.Top="57" Text="{DynamicResource 0062}" FontWeight="Medium" Foreground="Black" FontSize="20"/>
- <Rectangle Canvas.Left="58" Canvas.Top="90" Width="44" Height="2" Fill="#4D75AC" RadiusX="1" RadiusY="1"/>
- <customControl:ImageCustom Canvas.Left="634" Canvas.Top="60" Width="18" Height="18" MouseUp="Cancel_MouseUp"
- IconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CloseGrayIcon.png"
- MouseOverIconSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CloseBlueIcon.png"/>
- <!--MarkDefeatIcon--> <!--CheckRadioButtonIcon-->
- <StackPanel Canvas.Left="60" Canvas.Top="90" Width="590">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="110"/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
- <TextBlock Margin="3 0 0 0" VerticalAlignment="Center" DockPanel.Dock="Left" Canvas.Left="73" Canvas.Top="115" FontWeight="Medium" Foreground="#707070" FontSize="16" >
- <Run Text="{DynamicResource 0597}"/><Run Text=":"/>
- </TextBlock>
-
- </StackPanel>
- <StackPanel Grid.Column="1" Margin="5 0 0 0" Orientation="Horizontal">
- <CheckBox IsChecked="True" FontWeight="Medium" Foreground="#707070" FontSize="18" Content="{DynamicResource 0027}" VerticalContentAlignment="Center" Style="{DynamicResource CheckBoxStyle2}"
- x:Name="_all_CheckBox1" Unchecked="All_UnChecked" Checked="All_Checked" Height="56"/>
- <CheckBox Margin="10 0 0 0" IsChecked="True" FontWeight="Medium" Foreground="#707070" FontSize="18" Content="{DynamicResource 0041}" VerticalContentAlignment="Center" Style="{DynamicResource CheckBoxStyle2}"
- x:Name="_rem_CheckBox1" Unchecked="Rem_UnChecked" Checked="Rem_Checked" Height="56"/>
- <CheckBox Margin="10 0 0 0" IsChecked="True" FontWeight="Medium" Foreground="#707070" FontSize="18" Content="{DynamicResource 0040}" VerticalContentAlignment="Center" Style="{DynamicResource CheckBoxStyle2}"
- x:Name="_len_CheckBox1" Unchecked="Len_UnChecked" Checked="Len_Checked" Height="56"/>
- <CheckBox Margin="10 0 0 0" IsChecked="True" FontWeight="Medium" Foreground="#707070" FontSize="18" Content="{DynamicResource 0042}" VerticalContentAlignment="Center" Style="{DynamicResource CheckBoxStyle2}"
- x:Name="_fei_CheckBox1" Unchecked="Fei_UnChecked" Checked="Fei_Checked" Height="56"/>
-
- </StackPanel>
- </Grid>
- <StackPanel Orientation="Horizontal" Margin="113 0 0 0">
- <CheckBox Margin="0 0 0 0" IsChecked="True" FontWeight="Medium" Foreground="#707070" FontSize="18" Content="{DynamicResource 0043}" VerticalContentAlignment="Center" Style="{DynamicResource CheckBoxStyle2}"
- x:Name="_san_CheckBox1" Unchecked="San_UnChecked" Checked="San_Checked" Height="56"/>
- <CheckBox Margin="10 0 0 0" IsChecked="True" FontWeight="Medium" Foreground="#707070" FontSize="18" Content="{DynamicResource 0616}" VerticalContentAlignment="Center" Style="{DynamicResource CheckBoxStyle2}"
- x:Name="_wei_CheckBox1" Unchecked="Wei_UnChecked" Checked="Wei_Checked" Height="56"/>
- </StackPanel>
- <Grid Margin="0 15 0 0 ">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="110"/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
- <TextBlock Margin="3 0 0 0" VerticalAlignment="Center" DockPanel.Dock="Left" Canvas.Left="73" Canvas.Top="115" FontWeight="Medium" Foreground="#707070" FontSize="16" >
- <Run Text="{DynamicResource 0617}"/><Run Text=":"/>
- </TextBlock>
- </StackPanel>
- <StackPanel Grid.Column="1" Margin="5 0 0 0" Orientation="Horizontal">
- <customControl:TextBoxCustom Grid.Column="1" VerticalAlignment="Center" Width="410"
- x:Name="_dirName_TextBox" Height="34" DefeatString="{DynamicResource 0618}" />
- <customControl:ButtonCornerRadius Margin="5 0 0 0" x:Name="_exportDish" Width="60" Height="34" Content="..." FontSize="18" Click="SelectDir_Click"/>
- </StackPanel>
- </Grid>
- </StackPanel>
-
- <TextBlock x:Name="message" Canvas.Left="134" Canvas.Top="275" Text="" MaxWidth="300" FontWeight="Medium" FontSize="16" Foreground="Red" TextWrapping="Wrap"/>
- <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">
- <customControl:ButtonCornerRadius.Background>
- <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/OkButtonIcon1.png"/>
- </customControl:ButtonCornerRadius.Background>
- </customControl:ButtonCornerRadius>
- <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">
- <customControl:ButtonCornerRadius.Background>
- <ImageBrush ImageSource="pack://application:,,,/ivf_tl_Manage;component/Resources/Images/CancelButtonIcon1.png"/>
- </customControl:ButtonCornerRadius.Background>
- </customControl:ButtonCornerRadius>
- <!--<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"/>-->
- <!--<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"/>-->
- </Canvas>
- </Window>
|