private void SetParamValue(MDQuery_GuideLineParameter _pa)
 {
     foreach (Control _c in this.Controls)
     {
         SinoSZUC_GLQD_InputItem _inputItem = _c as SinoSZUC_GLQD_InputItem;
         if (_inputItem.ParamDefine.ParameterName == _pa.Paramter.ParameterName)
         {
             _inputItem.SetValue(_pa.Data);
         }
     }
 }
 public void WriteParamValue(string _pname, string _value)
 {
     foreach (Control _c in this.Controls)
     {
         SinoSZUC_GLQD_InputItem _inputItem = _c as SinoSZUC_GLQD_InputItem;
         if (_inputItem.ParamDefine.ParameterName == _pname)
         {
             _inputItem.SetValue(_value);
         }
     }
 }