Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.ComponentModel;
|
---|
4 | using System.Drawing;
|
---|
5 | using System.Linq;
|
---|
6 | using System.Text;
|
---|
7 | using System.Windows.Forms;
|
---|
8 | using HeuristicLab.Core.Views;
|
---|
9 | using HeuristicLab.MainForm;
|
---|
10 | using HeuristicLab.MainForm.WindowsForms;
|
---|
11 | using HeuristicLab.Problems.DataAnalysis;
|
---|
12 | using HeuristicLab.Data.Views;
|
---|
13 | using HeuristicLab.Analysis;
|
---|
14 | using HeuristicLab.Analysis.Views;
|
---|
15 |
|
---|
16 | namespace 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.