schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<UserControl x:Class="XHandler.View.BacteriaProperty.PickAndTransferProperty"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:local="clr-namespace:XHandler.View.BacteriaProperty"
             xmlns:str="clr-namespace:XHandler.Properties"
             xmlns:ctrls="clr-namespace:XHandler.Controls"
             mc:Ignorable="d" 
             d:DesignHeight="450" d:DesignWidth="800" Loaded="UserControl_Loaded">
    <ScrollViewer x:Name="scrollViewer">
        <Grid>
            <Grid.RowDefinitions>
                <RowDefinition Height="40"/>
                <RowDefinition Height="40"/>
                <RowDefinition Height="40"/>
                <RowDefinition Height="40"/>
                <RowDefinition Height="60"/>
                <RowDefinition Height="40"/>
                <RowDefinition Height="40"/>
                <RowDefinition Height="40"/>
                <RowDefinition Height="40"/>
                <RowDefinition Height="40"/>
                <RowDefinition Height="40"/>
                <RowDefinition Height="40"/>
                <RowDefinition Height="auto"/>
            </Grid.RowDefinitions>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="130"/>
                <ColumnDefinition Width="*"/>
                <ColumnDefinition Width="*"/>
            </Grid.ColumnDefinitions>
 
            <!--命令标签-->
            <TextBlock Grid.Row="0" Grid.Column="0" Text="{x:Static str:Resources.strCommandTag}" FontSize="16"
                   VerticalAlignment="Center" HorizontalAlignment="Right" Margin="5 0 15 0"/>
            <TextBox Grid.Row="0" Grid.Column="1"  x:Name="tbxCommandLabel" Height="30" FontSize="16" VerticalContentAlignment="Center" BorderThickness="0" Background="{DynamicResource lightGrayBrush}"
                 Text="{Binding label, Mode=TwoWay}" TextChanged="tbxCommandLabel_TextChanged" IsEnabled="False"/>
 
            <!--命令名称-->
            <TextBlock Grid.Row="1" Grid.Column="0" Text="{x:Static str:Resources.strCommandName}" FontSize="16" 
                   VerticalAlignment="Center" HorizontalAlignment="Right" Margin="5 0 15 0"/>
            <TextBox x:Name="tbxCommandName" Grid.Row="1" Grid.Column="1" Height="30" FontSize="16" VerticalContentAlignment="Center" Background="{DynamicResource lightGrayBrush}"
                     BorderThickness="0" TextChanged="tbxCommandName_TextChanged" >
                <TextBox.Text>
                    <Binding Path="name" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged" NotifyOnValidationError="True" >
                        <Binding.ValidationRules>
                            <local:BacteriaPropertyValidationRule  ValidateType="1,6@[100]"/>
                        </Binding.ValidationRules>
                    </Binding>
                </TextBox.Text>
            </TextBox>
            <TextBlock Grid.Row="1" Grid.Column="2" x:Name="nError" Text="{Binding  ElementName=tbxCommandName,Path=(Validation.Errors)[0].ErrorContent}" Foreground="Red" FontSize="16" 
                   VerticalAlignment="Center" HorizontalAlignment="Right" Margin="5 5 5 0"/>
 
            <!--机械臂-->
            <TextBlock Grid.Row="2" Grid.Column="0" Text="{x:Static str:Resources.strArm}" FontSize="16" 
                   VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0 0 15 0"/>
            <ComboBox x:Name="cbArm" Grid.Row="2" Grid.Column="1" Height="30" BorderThickness="0" Background="{DynamicResource lightGrayBrush}"
                      DisplayMemberPath="device_arm_name" SelectedValuePath="device_arm_id" SelectionChanged="cbArm_SelectionChanged" IsEditable="False"/>
 
            <!--挑菌枪-->
            <TextBlock Grid.Row="3" Grid.Column="0" Text="{x:Static str:Resources.strBacteriaHead}" FontSize="16" 
                   VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0 0 15 0"/>
            <TextBox x:Name="textboxArmHead" Grid.Row="3" Grid.Column="1" Height="30" FontSize="16" VerticalContentAlignment="Center" BorderThickness="0" Background="{DynamicResource lightGrayBrush}"
                 Text="" IsEnabled="False"/>
            <ctrls:TipsChannel x:Name="tipsChannel" Grid.Row="4" Grid.Column="1" TotalChannels="8" Height="70" Background="White" CanEdit="False"
                               HorizontalAlignment="Left" SelectedChangedEvent="tipsChannel_SelectedChangedEvent"/>
 
            <!--菌落-->
            <TextBlock Grid.Row="5" Grid.Column="0" Text="{x:Static str:Resources.strBacteria}" FontSize="16" 
                   VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0 0 15 0"/>
            <ComboBox x:Name="cbBacteria" Grid.Row="5" Grid.Column="1" Height="30" BorderThickness="0" Background="{DynamicResource lightGrayBrush}"
                      DisplayMemberPath="bacteria_name" SelectedValuePath="bacteria_id" SelectionChanged="cbBacteria_SelectionChanged" IsEditable="False"/>
 
            <!--挑菌方式-->
            <TextBlock Grid.Row="6" Grid.Column="0" Text="{x:Static str:Resources.strPickMode}" FontSize="16" 
                   VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0 0 15 0"/>
            <ComboBox x:Name="cbPickMode" Grid.Row="6" Grid.Column="1" Height="30" BorderThickness="0" Background="{DynamicResource lightGrayBrush}" 
                      DisplayMemberPath="dropdown_name" SelectedValuePath="dropdown_id" SelectionChanged="cbPickMode_SelectionChanged" IsEditable="False" />
 
            <!--挑选耗材类型-->
            <TextBlock Grid.Row="7" Grid.Column="0" Text="{x:Static str:Resources.strPickLabwateType}" FontSize="16"
                   VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0 0 15 0"/>
            <ctrls:PromptTextBox x:Name="pickLabware" Grid.Row="7" Grid.Column="1" Height="30" FontSize="16" VerticalContentAlignment="Center"
                                 Watermark="{x:Static str:Resources.strPleaseSelect}" Background="{DynamicResource lightGrayBrush}" BorderThickness="0"
                                 Text="" Tag="" TextChanged="pickLabware_TextChanged" GotFocus="labware_GotFocus" IsReadOnly="True" />
            <!--自动开关盖-->
            <CheckBox Grid.Row="7" Grid.Column="2" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="16" x:Name="ckbAutoOpenCloseCover" Content="自动开关盖" 
                      IsChecked="false" VerticalContentAlignment="Center" Click="ckbAutoOpenCloseCover_Click"/>
            
            <!--枪头类型-->
            <TextBlock Grid.Row="8" Grid.Column="0" Text="{x:Static str:Resources.strTipsType1}" FontSize="16"
                               VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0 0 10 0"/>
            <ctrls:PromptTextBox x:Name="tipsLabware" Grid.Row="8" Grid.Column="1" Height="30" FontSize="16" VerticalContentAlignment="Center"
                                 Watermark="{x:Static str:Resources.strPleaseSelect}" Background="{DynamicResource lightGrayBrush}" BorderThickness="0"
                                 Text="" Tag="" TextChanged="tipsLabware_TextChanged" GotFocus="labware_GotFocus" IsReadOnly="True"/>
 
            <!--调高-->
            <TextBlock Grid.Row="9" Grid.Column="0" Text="{x:Static str:Resources.strCoatingOffset}" FontSize="16"
                               VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0 0 10 0"/>
            <TextBox Grid.Row="9" Grid.Column="1" x:Name="tbxChoiceOffset" Height="30" FontSize="16" VerticalContentAlignment="Center" HorizontalAlignment="Left" 
                     BorderThickness="0" Width="80" Background="{DynamicResource lightGrayBrush}" Text="" TextChanged="tbxChoiceOffset_TextChanged"/>
            <TextBlock Grid.Row="9" Grid.Column="1" Text="{x:Static str:Resources.strMMUnit}" FontSize="16"
                               VerticalAlignment="Center" HorizontalAlignment="Left" Margin="80 0 0 0"/>
 
            
            <ctrls:StepBar x:Name="stepBar" Grid.Row="11" Grid.Column="0" Grid.ColumnSpan="3" Margin="50 0 0 0" Height="40">
                <!--超声设置-->
                <ctrls:StepBarItem Content="{x:Static str:Resources.strUltrasonicStep}" x:Name="stepUltrasonicSetting"/>
                <!--挑菌前环境设置-->
                <ctrls:StepBarItem Content="{x:Static str:Resources.strbeforeChoiceSetting}" x:Name="stepBeforeChoiceSetting"/>
            </ctrls:StepBar>
 
            <!--#region 超声探测 -->
            <Grid x:Name="gridUltrasonic" Grid.Row="12" Grid.Column="0" Grid.ColumnSpan="3" Visibility="Visible" Margin="50,0,0,0">
                <Grid>
                    <Grid.RowDefinitions>
                        <RowDefinition Height="40"/>
                        <RowDefinition Height="auto"/>
                        <RowDefinition Height="40"/>
                    </Grid.RowDefinitions>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="130"/>
                        <ColumnDefinition Width="*"/>
                        <ColumnDefinition Width="*"/>
                    </Grid.ColumnDefinitions>
 
                    <!--开启超声探测 Margin="0 0 100 0"  Margin="1,10,0,0" Margin="0 280 100 10" -->
                    <CheckBox Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="3" x:Name="cbxEnableUltrasonic" IsChecked="False"  Content="{x:Static str:Resources.strIsUltrasonic}" FontSize="16"
                              VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0 0 50 0" Click="cbxEnableUltrasonic_Click"></CheckBox>
 
                    <!--超声子页面-->
                    <Grid x:Name="gridUltrasonicProperty" Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="3" />
                    <Button x:Name="btnUltrasonicNext" Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="3" Content="{x:Static str:Resources.btnNext}"
                            HorizontalAlignment="Right" VerticalAlignment="Center" FontSize="16" Width="80" Height="30" Foreground="White" 
                            Style="{DynamicResource BlueButtonStyle}" Background="{DynamicResource blueBrush}" Click="btnUltrasonicNext_Click" Margin="0 0 100 0"/>
                    
                </Grid>
            </Grid>
            <!--#endregion-->
 
            <!--#region 挑菌前环境设置 -->
            <Grid x:Name="gridLiquidParam" Grid.Row="12" Grid.Column="0" Grid.ColumnSpan="3" Visibility="Collapsed" Margin="20,0,0,0">
                <Grid x:Name="gridChoiceAgoAspirateChild" Margin="0 0"/>
                <Button x:Name="btnLiquidParamPrev" Content="{x:Static str:Resources.strPrev}" HorizontalAlignment="Right" VerticalAlignment="Center" FontSize="16" Width="80" Height="30"
                                Foreground="White" Style="{DynamicResource BlueButtonStyle}" Background="LightGray" Click="btnLiquidParamPrev_Click" Margin="0 410 100 10"/>
            </Grid>
            <!--#endregion-->
 
 
        </Grid>
    </ScrollViewer>
</UserControl>