Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10557 was 10557, checked in by pfleck, 10 years ago
  • moved all views into views-assembly
File size: 809 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Drawing;
5using System.Linq;
6using System.Text;
7using System.Windows.Forms;
8using HeuristicLab.Core.Views;
9using HeuristicLab.MainForm;
10using HeuristicLab.MainForm.WindowsForms;
11
12namespace HeuristicLab.DataPreprocessing.Views
13{
14  [View("Comparison Filter View")]
15  [Content(typeof(ComparisonFilter), false)]
16  public partial class ComparisonFilterView : ItemView
17  {
18    public ComparisonFilterView()
19    {
20      InitializeComponent();
21    }
22
23    public new ComparisonFilter Content
24    {
25      get { return (ComparisonFilter)base.Content; }
26      set { base.Content = value; }
27    }
28
29    protected override void OnContentChanged()
30    {
31      base.OnContentChanged();
32    }
33
34  }
35}
Note: See TracBrowser for help on using the repository browser.