Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/PreprocessingDataTableView.cs @ 10547

Last change on this file since 10547 was 10546, checked in by aesterer, 10 years ago

Created PreprocessingDataTableView

File size: 1.1 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Drawing;
5using System.Linq;
6using System.Text;
7using System.Windows.Forms;
8using HeuristicLab.Core.Views;
9using HeuristicLab.MainForm;
10using HeuristicLab.MainForm.WindowsForms;
11using HeuristicLab.Problems.DataAnalysis;
12using HeuristicLab.Data.Views;
13using HeuristicLab.Analysis;
14using HeuristicLab.Analysis.Views;
15
16namespace HeuristicLab.DataPreprocessing.Views {
17
18  [View("Preprocessing Data Table View")]
19  [Content(typeof(DataTable), false)]
20  public partial class PreprocessingDataTableView : DataTableView {
21
22    public new DataTable Content {
23      get { return (DataTable)base.Content; }
24      set { base.Content = value; }
25    }
26
27    public PreprocessingDataTableView() {
28      InitializeComponent();
29
30      this.Controls.Remove(nameLabel);
31      this.Controls.Remove(nameTextBox);
32      this.Controls.Remove(infoLabel);
33    }
34
35    protected override void OnContentChanged() {
36      base.OnContentChanged();
37      if (Content != null) {
38      }
39    }
40
41  }
42}
Note: See TracBrowser for help on using the repository browser.