diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Mesnac.Action.ChemicalWeighing.csproj b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Mesnac.Action.ChemicalWeighing.csproj
index 7ca50c1..f0e00ed 100644
--- a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Mesnac.Action.ChemicalWeighing.csproj
+++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Mesnac.Action.ChemicalWeighing.csproj
@@ -571,6 +571,7 @@
+
diff --git a/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Qu/Sb.cs b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Qu/Sb.cs
new file mode 100644
index 0000000..16e47cb
--- /dev/null
+++ b/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Qu/Sb.cs
@@ -0,0 +1,60 @@
+using Mesnac.Controls.Default;
+
+using System;
+using System.Collections.Generic;
+using System.Drawing;
+using System.Linq;
+using System.Reflection;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Mesnac.Action.ChemicalWeighing.Qu
+{
+ public class Sb
+ {
+ List Controls;
+
+
+ public Sb(List c)
+ {
+ this.Controls = c;
+
+ PropertyInfo[] sourcePropertyInfoList = this.GetType().GetProperties();
+ foreach (PropertyInfo sourceProperty in sourcePropertyInfoList)
+ {
+ string name = sourceProperty.Name;
+ var pro = Controls.FirstOrDefault(x => x.Name == name) as SpecialLabelBlue;
+ sourceProperty.SetValue(this, pro);
+ }
+
+ }
+
+ public void Action()
+ {
+
+ PropertyInfo[] sourcePropertyInfoList = this.GetType().GetProperties();
+ foreach (PropertyInfo sourceProperty in sourcePropertyInfoList)
+ {
+ object value = sourceProperty.GetValue(this);
+ SpecialLabelBlue stu = value as SpecialLabelBlue;
+ if (stu.BackColor == Color.Yellow)
+ {
+ SetWhite(stu);
+ sourceProperty.SetValue(this, stu);
+ }
+
+ }
+ }
+
+ public void SetWhite(SpecialLabelBlue special)
+ {
+ special.BackColor = Color.White;
+ }
+
+ public void SetLightGreen(SpecialLabelBlue special)
+ {
+ special.BackColor = Color.Yellow;
+ }
+ }
+}
diff --git a/Main/MCEdit/Data/MCProject/nodeForm/MainDetail.xml b/Main/MCEdit/Data/MCProject/nodeForm/MainDetail.xml
index c67666e..20ff3ae 100644
--- a/Main/MCEdit/Data/MCProject/nodeForm/MainDetail.xml
+++ b/Main/MCEdit/Data/MCProject/nodeForm/MainDetail.xml
@@ -1,6 +1,474 @@