| 1234567891011121314151617181920212223242526272829303132333435 |
- using Core.Mes.Client.Comm.Control;
- using CoreFS.CA06;
- using System;
- using System.Data;
- namespace Core.StlMes.Client.Qcm
- {
- public partial class FrmMaterialView : FrmBase
- {
- public FrmMaterialView()
- {
- InitializeComponent();
- }
- private DataTable dt;
- public DataTable Dt
- {
- get { return dt; }
- set { dt = value; }
- }
- private void FrmMaterialView_Load(object sender, EventArgs e)
- {
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- LoadData();
- }
- private void LoadData()
- {
- GridHelper.CopyDataToDatatable(ref dt, ref dataTable1, true);
- }
- }
- }
|