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
|
Rev | Line | |
---|
[17404] | 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 {
|
---|
[17464] | 12 | public partial class JsonItemBoolControl : UserControl {
|
---|
| 13 | public JsonItemBoolControl(BoolValueVM vm) {
|
---|
[17404] | 14 | InitializeComponent();
|
---|
[17464] | 15 | checkBoxValue.DataBindings.Add("Checked", vm, nameof(BoolValueVM.Value));
|
---|
[17404] | 16 | }
|
---|
| 17 | }
|
---|
| 18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.