Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/HistogramView.cs @ 10355

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

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

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