Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/20/16 15:28:14 (7 years ago)
Author:
pfleck
Message:

#2709

  • Added Check Inputs/All/None buttons instead of showing disabled buttons of the ItemCollectionView.
  • Removed the PreprocessingCheckedItemListView. A standard ListView is used instead.
  • Fixed slow updating when simultaneously (un-)checking multiple variables in the chart views. (currently only works by using the new buttons)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing Enhancements/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingChartView.cs

    r14459 r14511  
    6666
    6767    protected virtual int GetNumberOfVisibleDataTables() {
    68       return checkedItemList.Content.CheckedItems.Count();
     68      return Content.VariableItemList.CheckedItems.Count();
    6969    }
    7070
     
    150150    #endregion
    151151
     152    protected override void CheckedChangedUpdate() {
     153      GenerateLayout();
     154    }
     155
    152156    #region Generate Layout
    153157    protected void GenerateLayout() {
     158      if (suppressCheckedChangedUpdate)
     159        return;
     160
    154161      tableLayoutPanel.SuspendRepaint();
    155162
Note: See TracChangeset for help on using the changeset viewer.