Changeset 17843 for branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/ViewModels/IntVMs.cs
- Timestamp:
- 02/23/21 16:36:44 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/ViewModels/IntVMs.cs
r17828 r17843 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System.Windows.Forms; 7 8 namespace HeuristicLab.JsonInterface.OptimizerIntegration { 1 namespace HeuristicLab.JsonInterface.OptimizerIntegration { 9 2 public class IntArrayValueVM : ArrayValueVM<int, IntArrayJsonItem> { 10 3 protected override int MinTypeValue => int.MinValue; 11 4 protected override int MaxTypeValue => int.MaxValue; 12 13 public override int[] Value {14 get => Item.Value;15 set {16 Item.Value = value;17 OnPropertyChange(this, nameof(Value));18 }19 }20 5 } 21 6
Note: See TracChangeset
for help on using the changeset viewer.