Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/LineChartView.cs @ 10371

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

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

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