Beispiel #1
0
 public ParetoDataType(SPC.Controls.Base.CanChooseDataGridView view, string param, int groupType, int cuType)
 {
     this.View = view;
     this.Param = param;
     this.GroupType = groupType;
     this.CuType = cuType;
 }
Beispiel #2
0
 public ParetoDataType(SPC.Controls.Base.CanChooseDataGridView view, string param, int groupType, int cuType)
 {
     this.View      = view;
     this.Param     = param;
     this.GroupType = groupType;
     this.CuType    = cuType;
 }
Beispiel #3
0
 public MonitorSourceDataType(SPC.Controls.Base.CanChooseDataGridView view, string param, int groupType, string spectrumWith)
 {
     this.View = view;
     this.Param = param;
     this.GroupType = groupType;
     this.SpectrumWith = spectrumWith;
 }
Beispiel #4
0
 public XYZRelationSourceDataType(SPC.Controls.Base.CanChooseDataGridView view, string paramX, string paramY, string paramZ)
 {
     this.View   = view;
     this.ParamX = paramX;
     this.ParamY = paramY;
     this.ParamZ = paramZ;
 }
Beispiel #5
0
 public MonitorSourceDataType(SPC.Controls.Base.CanChooseDataGridView view, string param, int groupType, string spectrumWith)
 {
     this.View         = view;
     this.Param        = param;
     this.GroupType    = groupType;
     this.SpectrumWith = spectrumWith;
 }
Beispiel #6
0
 public SPCDetermineDataType(SPC.Controls.Base.CanChooseDataGridView view, string param, double ucl, double lcl, double standard, List <SPCCommandbase> commands)
 {
     this.View     = view;
     this.Param    = param;
     this.UCL      = ucl;
     this.LCL      = lcl;
     this.Standard = standard;
     this.Commands = commands;
 }
Beispiel #7
0
 public ViewChoosedData(SPC.Controls.Base.CanChooseDataGridView view, int[] choosedrows)
 {
     this.View        = view;
     this.sourceTable = view.TableTypeData;
     this.choosedRows = choosedrows;
 }
Beispiel #8
0
 public ViewChoosedData(SPC.Controls.Base.CanChooseDataGridView view)
 {
     this.View        = view;
     this.sourceTable = view.TableTypeData;
     this.choosedRows = view.GetChoosedRowIndexs();
 }
Beispiel #9
0
 public SPCDetermineDataType(SPC.Controls.Base.CanChooseDataGridView view, string param, double ucl, double lcl, double standard, List<SPCCommandbase> commands)
 {
     this.View = view;
     this.Param = param;
     this.UCL = ucl;
     this.LCL = lcl;
     this.Standard = standard;
     this.Commands = commands;
 }
Beispiel #10
0
 public XYZRelationSourceDataType(SPC.Controls.Base.CanChooseDataGridView view, string paramX, string paramY, string paramZ)
 {
     this.View = view;
     this.ParamX = paramX;
     this.ParamY = paramY;
     this.ParamZ = paramZ;
 }
 public ViewData(SPC.Controls.Base.CanChooseDataGridView view)
 {
     this.View        = view;
     this.sourceTable = (view.DataSource as DataView).Table;
     view.GridControl.Invoke(new Action(() => { this.View.ActiveFilter.Add(view.Columns[view.ChooseColumnName], new DevExpress.XtraGrid.Columns.ColumnFilterInfo(view.ChooseColumnName + " = true")); }));
 }