Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/TransformationView.cs @ 10303

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

Added empty views classes; Inserted view items into data preprocessing view

File size: 883 bytes
Line 
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.MainForm;
11using HeuristicLab.MainForm.WindowsForms;
12using HeuristicLab.Problems.DataAnalysis;
13using HeuristicLab.Data.Views;
14
15namespace HeuristicLab.DataPreprocessing.Views {
16
17  [View("Transformation View")]
18  [Content(typeof(TransformationContent), false)]
19  public partial class TransformationView : ItemView {
20    public TransformationView() {
21      InitializeComponent();
22    }
23
24    public new TransformationContent Content {
25      get { return (TransformationContent)base.Content; }
26    set { base.Content = value; }
27  }
28
29  protected override void OnContentChanged() {
30    base.OnContentChanged();
31  }
32  }
33}
Note: See TracBrowser for help on using the repository browser.