Last change
on this file since 10311 was
10303,
checked in by aesterer, 11 years ago
|
Added empty views classes; Inserted view items into data preprocessing view
|
File size:
883 bytes
|
Rev | Line | |
---|
[10303] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.ComponentModel;
|
---|
| 4 | using System.Drawing;
|
---|
| 5 | using System.Data;
|
---|
| 6 | using System.Linq;
|
---|
| 7 | using System.Text;
|
---|
| 8 | using System.Windows.Forms;
|
---|
| 9 | using HeuristicLab.Core.Views;
|
---|
| 10 | using HeuristicLab.MainForm;
|
---|
| 11 | using HeuristicLab.MainForm.WindowsForms;
|
---|
| 12 | using HeuristicLab.Problems.DataAnalysis;
|
---|
| 13 | using HeuristicLab.Data.Views;
|
---|
| 14 |
|
---|
| 15 | namespace 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.