Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/FilterView.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: 841 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("Filter View")]
18  [Content(typeof(FilterContent), false)]
19  public partial class FilterView : ItemView {
20
21    public new FilterContent Content {
22      get { return (FilterContent)base.Content; }
23      set { base.Content = value; }
24    }
25
26    public FilterView() {
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.