Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/StatisticsView.cs @ 10313

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

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

File size: 865 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 {
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.