Changeset 14384 for trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingCheckedVariablesView.cs
- Timestamp:
- 11/11/16 12:26:14 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/PreprocessingCheckedVariablesView.cs
r14382 r14384 21 21 22 22 using System; 23 using System.Collections.Generic; 23 24 using System.Drawing; 24 25 using System.Linq; … … 43 44 } 44 45 45 protected bool VariableIsChecked(string name) {46 protected bool IsVariableChecked(string name) { 46 47 return Content.VariableItemList.CheckedItems.Any(x => x.Value.Value == name); 47 48 } 48 49 protected IList<string> GetCheckedVariables() { 50 return checkedItemList.Content.CheckedItems.Select(i => i.Value.Value).ToList(); 51 } 49 52 50 53 protected override void OnContentChanged() {
Note: See TracChangeset
for help on using the changeset viewer.