| 123456789101112131415161718192021222324252627282930313233343536 |
- 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.Mes.Client.Comm.Tool;
- using Core.StlMes.Client.Judge.Models;
- using CoreFS.CA06;
- using Core.Mes.Client.Comm.Server;
- namespace Core.StlMes.Client.Judge.Controls
- {
- public partial class ThreadReport : UserControl
- {
- public ThreadReport()
- {
- InitializeComponent();
- qcmJyThreadReportEntityBindingSource.DataSource = new List<QcmJyThreadReportEntity>() { new QcmJyThreadReportEntity() };
- }
- private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
- {
- }
- private void ThreadReport_Load(object sender, EventArgs e)
- {
- EntityHelper.ShowGridCaption<QcmJyThreadReportEntity>(ultraGrid1.DisplayLayout.Bands[0]);
-
- }
- }
- }
|