| 12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Drawing;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using Core.StlMes.Client.SaleOrder.BLL;
- using CoreFS.CA06;
- using Core.Mes.Client.Comm.Tool;
- namespace Core.StlMes.Client.SaleOrder.Control
- {
- public partial class SlmOrdDesignMscJgPlStiCtrl : UserControl
- {
- private SlmOrdDesignMscJgPlStiBLL _designMscJgPlStiBLL;
- public SlmOrdDesignMscJgPlStiCtrl(System.Windows.Forms.Control container, OpeBase ob)
- {
- InitializeComponent();
- _designMscJgPlStiBLL = new SlmOrdDesignMscJgPlStiBLL(ob);
- container.Controls.Add(this);
- this.Dock = DockStyle.Fill;
- EntityHelper.ShowGridCaption<SlmOrdDesignMscJgPlStiEntity>(ultraGrid1.DisplayLayout.Bands[0]);
- }
- public void Query(SlmOrdDesignMscJgPlStiEntity designMscJgPlStiEntity)
- {
- this.slmOrdDesignMscJgPlStiEntityBindingSource.DataSource = _designMscJgPlStiBLL.Query(designMscJgPlStiEntity);
- }
- private void ultraGrid1_CellChange(object sender, Infragistics.Win.UltraWinGrid.CellEventArgs e)
- {
- }
- }
- }
|