Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs @ 10701

Last change on this file since 10701 was 10701, checked in by pfleck, 10 years ago
  • Undeleted PreprocessingCheckedItemListView and set default view to false.
  • Property svn:mergeinfo set to (toggle deleted branches)
    /branches/Algorithms.GradientDescent/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs5516-5520
    /branches/Benchmarking/sources/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs6917-7005
    /branches/CloningRefactoring/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs4656-4721
    /branches/DataAnalysis Refactoring/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs5471-5808
    /branches/DataAnalysis SolutionEnsembles/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs5815-6180
    /branches/DataAnalysis/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs4458-4459,​4462,​4464
    /branches/GP.Grammar.Editor/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs6284-6795
    /branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs5060
    /branches/HLScript/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs10331-10358
    /branches/HeuristicLab.Problems.DataAnalysis.Trading/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs6123-9799
    /branches/LogResidualEvaluator/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs10202-10483
    /branches/NET40/sources/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs5138-5162
    /branches/ParallelEngine/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs5175-5192
    /branches/ProblemInstancesRegressionAndClassification/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs7568-7810
    /branches/QAPAlgorithms/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs6350-6627
    /branches/Restructure trunk solution/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs6828
    /branches/RuntimeOptimizer/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs8943-9078
    /branches/ScatterSearch (trunk integration)/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs7787-8333
    /branches/SlaveShutdown/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs8944-8956
    /branches/SpectralKernelForGaussianProcesses/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs10204-10479
    /branches/SuccessProgressAnalysis/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs5370-5682
    /branches/Trunk/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs6829-6865
    /branches/UnloadJobs/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs9168-9215
    /branches/VNS/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs5594-5752
    /branches/histogram/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs5959-6341
    /stable/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs10032-10033
    /trunk/sources/HeuristicLab.DataPreprocessing.Views/3.3/PreprocessingCheckedItemListView.cs10085-10536
File size: 1.2 KB
RevLine 
[10628]1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Drawing;
5using System.Data;
6using System.Linq;
7using System.Text;
8using System.Windows.Forms;
9using HeuristicLab.Core.Views;
10using HeuristicLab.Data;
11using HeuristicLab.MainForm;
12using HeuristicLab.Core;
13
14namespace HeuristicLab.DataPreprocessing.Views {
15
16  [View("PreprocessingCheckedItemList View")]
[10701]17  [Content(typeof(CheckedItemList<StringValue>), false)]
18  [Content(typeof(ICheckedItemList<StringValue>), false)]
[10628]19  public partial class PreprocessingCheckedItemListView : CheckedItemListView<StringValue> {
20
21    public new ICheckedItemList<StringValue> Content {
22      get { return (ICheckedItemList<StringValue>)base.Content; }
23      set { base.Content = value; }
24    }
25
26    public PreprocessingCheckedItemListView()
27      : base() {
28      InitializeComponent();
[10701]29      DisableDetails();
[10628]30    }
31
32    private void DisableDetails() {
[10701]33      splitContainer.Panel2Collapsed = true;
34      viewHost.Content = null;
35      showDetailsCheckBox.Visible = false;
36
[10628]37    }
38
39    protected override void OnContentChanged() {
40      base.OnContentChanged();
41    }
42  }
43
44
45}
Note: See TracBrowser for help on using the repository browser.