| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using CoreFS.CA06;
- using Core.Mes.Client.Comm.Control;
- using Core.Mes.Client.Comm.Format;
- using Core.Mes.Client.Comm.Tool;
- using Core.StlMes.Client.LgResMgt.Mcms.entity;
- namespace Core.StlMes.Client.LgResMgt.Mcms
- {
- public partial class FrmPoundInfo : FrmBase
- {
- private string documentNo;
- public FrmPoundInfo(string _documentNo,OpeBase _ob)
- {
- InitializeComponent();
- documentNo = _documentNo;
- ob = _ob;
- }
- protected override void OnLoad(EventArgs e)
- {
- base.OnLoad(e);
- EntityHelper.ShowGridCaption<CmmWeightResultEntityFull>(CrackDetectGrid.DisplayLayout.Bands[0]);
-
- var dic = new Dictionary<string, object>();
- dic.Add("documentNo", documentNo);
- cmmWeightResultEntityFullBindingSource.DataSource = EntityHelper.GetData<CmmWeightResultEntityFull>(
- "com.steering.Mcms.ResultServer.doQueryDetails2",
- new object[] { dic },
- ob);
- Comm.RefreshAndAutoSize(CrackDetectGrid);
- }
- }
- }
|