Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2971_named_intervals/HeuristicLab.Data.Views/3.3/VariableRangesView.cs @ 16413

Last change on this file since 16413 was 16413, checked in by chaider, 5 years ago

#2971

  • Added parameter VariableRanges to RegressionProblemData
  • Added VariableRanges class
  • Added View class for VariableRanges
File size: 802 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.Threading.Tasks;
9using System.Windows.Forms;
10using HeuristicLab.MainForm.WindowsForms;
11using HeuristicLab.MainForm;
12
13namespace HeuristicLab.Data.Views {
14  [View("VariableRanges View")]
15  [Content(typeof(IVariableRanges), true)]
16  public partial class VariableRangesView : AsynchronousContentView {
17
18    public new IVariableRanges Content {
19      get { return (IVariableRanges)base.Content; }
20      set { base.Content = value; }
21    }
22
23    public DataGridView DataGridView {
24      get { return variableRangesGridView; }
25    }
26    public VariableRangesView() {
27      InitializeComponent();
28    }
29  }
30}
Note: See TracBrowser for help on using the repository browser.