Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/24/12 10:44:47 (12 years ago)
Author:
sforsten
Message:

#1292:

  • added cloning method and constructor to ExtendedHeatMap
  • renamed a variable in ExtendedHeatMapView
  • added backwards compatibility code in DataAnalysisProblemData
Location:
branches/DatasetFeatureCorrelation/HeuristicLab.Problems.DataAnalysis.Views/3.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/DatasetFeatureCorrelation/HeuristicLab.Problems.DataAnalysis.Views/3.4/CorrelationHeatMapView.Designer.cs

    r8276 r8318  
    2828      this.PartitionLabel = new System.Windows.Forms.Label();
    2929      this.PartitionComboBox = new System.Windows.Forms.ComboBox();
    30       this.ExtendedHeatMap = new HeuristicLab.Problems.DataAnalysis.Views.ExtendedHeatMapView();
     30      this.ExtendedHeatMapView = new HeuristicLab.Problems.DataAnalysis.Views.ExtendedHeatMapView();
    3131      this.HeatMapProgressBar = new System.Windows.Forms.ProgressBar();
    3232      this.SuspendLayout();
     
    7070      // ExtendedHeatMap
    7171      //
    72       this.ExtendedHeatMap.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     72      this.ExtendedHeatMapView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    7373                  | System.Windows.Forms.AnchorStyles.Left)
    7474                  | System.Windows.Forms.AnchorStyles.Right)));
    75       this.ExtendedHeatMap.Caption = "ExtendedHeatMap View";
    76       this.ExtendedHeatMap.Content = null;
    77       this.ExtendedHeatMap.Location = new System.Drawing.Point(3, 30);
    78       this.ExtendedHeatMap.Name = "ExtendedHeatMap";
    79       this.ExtendedHeatMap.ReadOnly = false;
    80       this.ExtendedHeatMap.Size = new System.Drawing.Size(627, 275);
    81       this.ExtendedHeatMap.TabIndex = 4;
     75      this.ExtendedHeatMapView.Caption = "ExtendedHeatMap View";
     76      this.ExtendedHeatMapView.Content = null;
     77      this.ExtendedHeatMapView.Location = new System.Drawing.Point(3, 30);
     78      this.ExtendedHeatMapView.Name = "ExtendedHeatMap";
     79      this.ExtendedHeatMapView.ReadOnly = false;
     80      this.ExtendedHeatMapView.Size = new System.Drawing.Size(627, 275);
     81      this.ExtendedHeatMapView.TabIndex = 4;
    8282      //
    8383      // HeatMapProgressBar
     
    101101      this.Controls.Add(this.CorrelationCalcLabel);
    102102      this.Controls.Add(this.CorrelationCalcComboBox);
    103       this.Controls.Add(this.ExtendedHeatMap);
     103      this.Controls.Add(this.ExtendedHeatMapView);
    104104      this.Name = "CorrelationHeatMapView";
    105105      this.Size = new System.Drawing.Size(633, 308);
     
    115115    protected System.Windows.Forms.Label PartitionLabel;
    116116    protected System.Windows.Forms.ComboBox PartitionComboBox;
    117     protected HeuristicLab.Problems.DataAnalysis.Views.ExtendedHeatMapView ExtendedHeatMap;
     117    protected HeuristicLab.Problems.DataAnalysis.Views.ExtendedHeatMapView ExtendedHeatMapView;
    118118    private System.Windows.Forms.ProgressBar HeatMapProgressBar;
    119119  }
  • branches/DatasetFeatureCorrelation/HeuristicLab.Problems.DataAnalysis.Views/3.4/CorrelationHeatMapView.cs

    r8276 r8318  
    5555    protected override void OnContentChanged() {
    5656      base.OnContentChanged();
    57       ExtendedHeatMap.Content = Content;
     57      ExtendedHeatMapView.Content = Content;
    5858      if (Content != null) {
    5959        CorrelationCalcComboBox.DataSource = Content.CorrelationCalculators;
Note: See TracChangeset for help on using the changeset viewer.