public ExperimentExperimentComparison()
 {
     this.relationUtility = new RelationUtility();
     InitializeComponent();
     this.dgv_EE_Peaks.MouseClick              += new MouseEventHandler(dgv_EE_Peak_List_CellClick);
     this.ct_EE_Histogram.MouseClick           += new MouseEventHandler(ct_EE_Histogram_MouseClick);
     this.ct_EE_peakList.MouseClick            += new MouseEventHandler(ct_EE_peakList_MouseClick);
     dgv_EE_Peaks.CurrentCellDirtyStateChanged += new EventHandler(EE_Peak_List_DirtyStateChanged); //makes the change immediate and automatic
     InitializeParameterSet();
 }
Example #2
0
 public ExperimentTheoreticalComparison()
 {
     relationUtility = new RelationUtility();
     InitializeComponent();
     this.AutoScroll              = true;
     this.AutoScrollMinSize       = this.ClientSize;
     dgv_ET_Peak_List.MouseClick += new MouseEventHandler(dgv_ET_Peak_List_CellClick);
     ct_ET_Histogram.MouseClick  += new MouseEventHandler(ct_ET_Histogram_MouseClick);
     ct_ET_peakList.MouseClick   += new MouseEventHandler(ct_ET_peakList_MouseClick);
     dgv_ET_Peak_List.CurrentCellDirtyStateChanged += new EventHandler(ET_Peak_List_DirtyStateChanged); // makes the change immediate and automatic
     InitializeParameterSet();
 }