Free cookie consent management tool by TermsFeed Policy Generator

Changeset 15621 for trunk/sources


Ignore:
Timestamp:
01/17/18 11:14:20 (6 years ago)
Author:
fholzing
Message:

#2880: Changed event from SelectedIndexChanged to SelectionChangeCommitted

Location:
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBoxPlotView.Designer.cs

    r15607 r15621  
    8989      this.xAxisComboBox.Size = new System.Drawing.Size(600, 21);
    9090      this.xAxisComboBox.TabIndex = 11;
    91       this.xAxisComboBox.SelectedIndexChanged += new System.EventHandler(this.AxisComboBox_SelectedIndexChanged);
     91      this.xAxisComboBox.SelectionChangeCommitted += new System.EventHandler(this.AxisComboBox_SelectionChangeCommitted);
    9292      //
    9393      // yAxisLabel
     
    109109      this.yAxisComboBox.Size = new System.Drawing.Size(600, 21);
    110110      this.yAxisComboBox.TabIndex = 9;
    111       this.yAxisComboBox.SelectedIndexChanged += new System.EventHandler(this.AxisComboBox_SelectedIndexChanged);
     111      this.yAxisComboBox.SelectionChangeCommitted += new System.EventHandler(this.AxisComboBox_SelectionChangeCommitted);
    112112      //
    113113      // chart
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionBoxPlotView.cs

    r15610 r15621  
    383383    }
    384384
    385     private void AxisComboBox_SelectedIndexChanged(object sender, EventArgs e) {
     385    private void AxisComboBox_SelectionChangeCommitted(object sender, EventArgs e) {
    386386      UpdateDataPoints();
    387387    }
Note: See TracChangeset for help on using the changeset viewer.