Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/09/20 10:36:09 (5 years ago)
Author:
dpiringe
Message:

#3026:

  • deleted INamedMatrixJsonItem and all corresponding classes/views, because of bad design
  • added ILookupJsonItem and IValueLookupJsonItem (incl. all corresponding implementations, VMs, Views)
  • added IResultJsonItem
  • changed type of property Control from JsonItemBaseControl to UserControl in IJsonItemVM (because the details control now builds up with linked user controls -> allows better construction of dynamic controls)
  • added all properties of INamedMatrixJsonItem in IMatrixJsonItem
  • refactored a lot of views for better usage (TableLayoutPanel is used a lot now -> for better item positioning)
  • property ActualName is now located in ILookupJsonItem instead of IJsonItem
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/ViewModels/StringValueVM.cs

    r17464 r17471  
    33using System.Linq;
    44using System.Text;
     5using System.Threading;
    56using System.Threading.Tasks;
     7using System.Windows.Forms;
    68
    79namespace HeuristicLab.JsonInterface.OptimizerIntegration {
    810  public class StringValueVM : JsonItemVMBase {
    911    public override Type JsonItemType => typeof(StringJsonItem);
    10     public override JsonItemBaseControl Control =>
    11        new JsonItemBaseControl(this, new JsonItemValidValuesControl(this));
     12    public override UserControl Control =>
     13       new JsonItemValidValuesControl(this);
    1214
    1315    public string Value {
Note: See TracChangeset for help on using the changeset viewer.