Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/ViewModels/RangeVM.cs @ 17519

Last change on this file since 17519 was 17519, checked in by dpiringe, 4 years ago

#3026:

  • added error output for failed runner initialization
  • reorganised some final view models
  • TargetedJsonItemType (in JsonItemVMBase) now automatically returns the type of the defined JsonItem
  • code cleanup
  • refactored RegressionProblemDataConverter
  • added lots of comments
  • added new view for StringArrayJsonItem
  • added new UI component for concrete restricted items and used it in JsonItemConcreteItemArrayControl and JsonItemValidValuesControl
File size: 764 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Linq;
5using System.Text;
6using System.Threading.Tasks;
7using System.Windows.Forms;
8
9namespace HeuristicLab.JsonInterface.OptimizerIntegration {
10
11  public abstract class RangeVM<T, JsonItemType> : RangedValueBaseVM<T, JsonItemType>
12    where T : IComparable
13    where JsonItemType : class, IRangedJsonItem<T>
14  {
15
16    public T MinValue {
17      get => Item.MinValue;
18      set {
19        Item.MinValue = value;
20        OnPropertyChange(this, nameof(MinValue));
21      }
22    }
23
24    public T MaxValue {
25      get => Item.MaxValue;
26      set {
27        Item.MaxValue = value;
28        OnPropertyChange(this, nameof(MaxValue));
29      }
30    }
31  }
32}
Note: See TracBrowser for help on using the repository browser.