ThreadReport.cs 994 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using Core.Mes.Client.Comm.Tool;
  10. using Core.StlMes.Client.Judge.Models;
  11. using CoreFS.CA06;
  12. using Core.Mes.Client.Comm.Server;
  13. namespace Core.StlMes.Client.Judge.Controls
  14. {
  15. public partial class ThreadReport : UserControl
  16. {
  17. public ThreadReport()
  18. {
  19. InitializeComponent();
  20. qcmJyThreadReportEntityBindingSource.DataSource = new List<QcmJyThreadReportEntity>() { new QcmJyThreadReportEntity() };
  21. }
  22. private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
  23. {
  24. }
  25. private void ThreadReport_Load(object sender, EventArgs e)
  26. {
  27. EntityHelper.ShowGridCaption<QcmJyThreadReportEntity>(ultraGrid1.DisplayLayout.Bands[0]);
  28. }
  29. }
  30. }