Last change
on this file since 17712 was
17464,
checked in by dpiringe, 5 years ago
|
#3026:
- Runner now uses SymbolicDataAnalysisExpressionMATLABFormatter to save instances of ISymbolicRegressionSolution
- refactored user controls for detail view of json items, now they do not inherit from JsonItemBaseControl -> JsonItemBaseControl uses now an extra control
- this change was made for fluid repositioning of controls (e.g. when no ActualName is present)
|
File size:
525 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 |
|
---|
11 | namespace HeuristicLab.JsonInterface.OptimizerIntegration {
|
---|
12 | public partial class JsonItemBoolControl : UserControl {
|
---|
13 | public JsonItemBoolControl(BoolValueVM vm) {
|
---|
14 | InitializeComponent();
|
---|
15 | checkBoxValue.DataBindings.Add("Checked", vm, nameof(BoolValueVM.Value));
|
---|
16 | }
|
---|
17 | }
|
---|
18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.