Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/14 17:37:19 (10 years ago)
Author:
psteiner
Message:

Implemented Filterview, ComparisonFilterView

Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3

    • Property svn:ignore set to
      ComparisonFilterView.resx
      FilterView.resx
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/ComparisonFilterView.cs

    r10558 r10589  
    2121
    2222using HeuristicLab.Core.Views;
     23using HeuristicLab.Core;
     24using HeuristicLab.Data;
    2325using HeuristicLab.DataPreprocessing.Filter;
    2426using HeuristicLab.MainForm;
     27using System.Collections;
    2528
    2629namespace HeuristicLab.DataPreprocessing.Views {
     
    3740    }
    3841
    39     protected override void OnContentChanged() {
    40       base.OnContentChanged();
    41     }
     42    //protected override void OnContentChanged() {
     43    //  base.OnContentChanged();
     44    //  cbAttr.Items.Clear();
     45    //  cbFilterOperation.Items.Clear();
     46    //  if (Content != null)
     47    //  {
     48    //    cbFilterOperation.Items.AddRange(Content.AllowedConstraintOperations.ToArray());
     49    //    if (Content.ConstraintOperation != null)
     50    //      cbFilterOperation.SelectedItem = Content.ConstraintOperation;
     51    //    else if (cbFilterOperation.Items.Count != 0)
     52    //      cbFilterOperation.SelectedIndex = 0;
     53    //    UpdateColumnComboBox();
     54    //    ReadOnly = Content.Active;
     55    //  }
     56    //}
     57
     58
     59
     60    //protected virtual void UpdateColumnComboBox()
     61    //{
     62    //  this.cbAttr.Items.Clear();
     63    //  if (Content.ConstrainedValue != null)
     64    //  {
     65    //    this.cbAttr.Items.AddRange(((IStringConvertibleMatrix)Content.ConstrainedValue).ColumnNames.ToArray());
     66    //    if (!string.IsNullOrEmpty(Content.ConstraintColumn))
     67    //      this.cbAttr.SelectedItem = Content.ConstraintColumn;
     68    //  }
     69    //}
    4270
    4371  }
Note: See TracChangeset for help on using the changeset viewer.