Last change
on this file since 16454 was
16413,
checked in by chaider, 6 years ago
|
#2971
- Added parameter VariableRanges to RegressionProblemData
- Added VariableRanges class
- Added View class for VariableRanges
|
File size:
802 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.ComponentModel;
|
---|
4 | using System.Drawing;
|
---|
5 | using System.Data;
|
---|
6 | using System.Linq;
|
---|
7 | using System.Text;
|
---|
8 | using System.Threading.Tasks;
|
---|
9 | using System.Windows.Forms;
|
---|
10 | using HeuristicLab.MainForm.WindowsForms;
|
---|
11 | using HeuristicLab.MainForm;
|
---|
12 |
|
---|
13 | namespace 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.