| | |
| | | using DevExpress.ClipboardSource.SpreadsheetML; |
| | | using DevExpress.XtraEditors; |
| | | using DevExpress.XtraEditors.Repository; |
| | | using DevExpress.XtraPrinting.Native; |
| | | using DevExpress.XtraEditors; |
| | | using Gs.DevApp.Entity; |
| | | using Gs.DevApp.ToolBox; |
| | | using Gs.DevApp.UserControl; |
| | |
| | | using Newtonsoft.Json.Linq; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel; |
| | | using System.Configuration; |
| | | using System.Data; |
| | | using System.Drawing; |
| | | using System.Linq; |
| | | using System.Net; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using System.Windows.Forms; |
| | | using System.Windows.Media.Animation; |
| | | |
| | | namespace Gs.DevApp.DevFrm.FQC |
| | | { |
| | |
| | | public Frm_FQCItem() |
| | | { |
| | | InitializeComponent(); |
| | | |
| | | // 绑定事件 |
| | | gridView2.CellValueChanged += gridView2_CellValueChanged; |
| | | gridView3.CellValueChanged += gridView3_CellValueChanged; |
| | |
| | | txt_SampleSize2.Leave += txt_SampleSize2_Leave; |
| | | // 添加抽样方法下拉框事件 |
| | | this.txt_SampleMethod.SelectedIndexChanged += Txt_SampleMethod_SelectedIndexChanged; |
| | | |
| | | //this.toolBarMenu1.getXmlConfig(); |
| | | |
| | | this.toolBarMenu1.getXmlConfig(); |
| | | // 设置GridView参数 |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gridView2); |
| | | Gs.DevApp.ToolBox.UtilityHelper.SetGridViewParameterMx(gridView3); |
| | |
| | | lbGuid, txt_Guid, gridView1); |
| | | if (string.IsNullOrEmpty(rowGuid)) |
| | | { |
| | | MsgHelper.Warning("请先选择你要操作的行!"); |
| | | MsgHelper.ShowError("请先选择你要操作的行!"); |
| | | return; |
| | | } |
| | | Gs.DevApp.ToolBox.UtilityHelper.JumpTab(xtraTabControl1, 3); |
| | | getModel(rowGuid); |
| | | |
| | | } |
| | | |
| | | /// <summary> |