Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/11/14 12:35:14 (10 years ago)
Author:
rstoll
Message:
  • Simplified DataGridContent - using a private set in the property instead of private fields
  • Disabled transformation if filter is active
  • Code Fromatted
File:
1 edited

Legend:

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

    r10970 r10977  
    4545      tabsPreview.ItemSize = new Size(0, 1);
    4646      tabsPreview.SizeMode = TabSizeMode.Fixed;
    47       lblPreviewInActive.Visible = false;
    4847
    4948      validators = new Action[] {
     
    7372        }
    7473        cmbVariableNames.SelectedIndex = 0;
    75         checkFilters();
     74        CheckFilters();
    7675      }
    7776    }
     
    9190    private void FilterLogic_FilterChanged(object sender, EventArgs e) {
    9291      if (Content != null) {
    93         checkFilters();
    94       }
    95     }
    96 
    97     private void checkFilters() {
     92        CheckFilters();
     93      }
     94    }
     95
     96    private void CheckFilters() {
    9897      if (Content.FilterLogic.IsFiltered) {
    9998        tabsPreview.SelectedIndex = 0;
Note: See TracChangeset for help on using the changeset viewer.