| 12345678910111213141516171819202122232425262728293031323334353637 |
- using Core.Mes.Client.Comm.Control;
- using Core.StlMes.Client.Judge.Commons;
- using CoreFS.CA06;
- using System.Data;
- using System.Windows.Forms;
- namespace Core.StlMes.Client.Judge.Controls
- {
- public partial class QcmZgResampleCtrl : UserControl
- {
- private Dal _d;
- private string _judgeStoveNo = "";
- private string _batchNo = "";
- public QcmZgResampleCtrl(Control container, OpeBase ob, string judgeStoveNo, string batchNo)
- {
- InitializeComponent();
- _judgeStoveNo = judgeStoveNo;
- _batchNo = batchNo;
- container.Controls.Add(this);
- _d = new Dal(ob);
- Query();
- }
- private void Query()
- {
- DataTable dt = _d.GetTableByXmlId("QcmBcPhyresultDAL.getResampleData", _judgeStoveNo, _batchNo);
- GridHelper.CopyDataToDatatable(dt, dataTable1, true);
- }
- private void ultraGrid1_CellChange(object sender, Infragistics.Win.UltraWinGrid.CellEventArgs e)
- {
- e.Cell.Row.Update();
- }
- }
- }
|