Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/ComparisonFilterView.cs @ 10552

Last change on this file since 10552 was 10549, checked in by psteiner, 10 years ago

Added Views and Classes for Filtering

File size: 861 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.Data.Views;
11using HeuristicLab.MainForm;
12using HeuristicLab.MainForm.WindowsForms;
13
14namespace HeuristicLab.DataPreprocessing.Views
15{
16  [View("Comparison Filter View")]
17  [Content(typeof(ComparisonFilter), false)]
18  public partial class ComparisonFilterView : ItemView
19  {
20    public ComparisonFilterView()
21    {
22      InitializeComponent();
23    }
24
25    public new ComparisonFilter Content
26    {
27      get { return (ComparisonFilter)base.Content; }
28      set { base.Content = value; }
29    }
30
31    protected override void OnContentChanged()
32    {
33      base.OnContentChanged();
34    }
35
36  }
37}
Note: See TracBrowser for help on using the repository browser.