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:
865 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 {
|
---|
| 16 |
|
---|
| 17 | [View("Statistics View")]
|
---|
| 18 | [Content(typeof(StatisticsContent), false)]
|
---|
| 19 | public partial class StatisticsView : ItemView {
|
---|
| 20 |
|
---|
| 21 | public new StatisticsContent Content {
|
---|
| 22 | get { return (StatisticsContent)base.Content; }
|
---|
| 23 | set { base.Content = value; }
|
---|
| 24 | }
|
---|
| 25 |
|
---|
| 26 | public StatisticsView() {
|
---|
| 27 | InitializeComponent();
|
---|
| 28 | }
|
---|
| 29 |
|
---|
| 30 | protected override void OnContentChanged() {
|
---|
| 31 | base.OnContentChanged();
|
---|
| 32 | }
|
---|
| 33 | }
|
---|
| 34 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.