Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/10/20 17:29:35 (4 years ago)
Author:
dpiringe
Message:

#3026:

  • added property Description in IJsonItem and updated all construction calls
  • updated UnsupportedJsonItem with unsupported property Description
  • updated JsonItemBaseControl and JsonItemVMBase for new property Description
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Shared/JsonItemBaseControl.cs

    r17431 r17433  
    2424        false, DataSourceUpdateMode.OnPropertyChanged);
    2525      textBoxName.DataBindings.Add("Text", VM, nameof(JsonItemVMBase.Name));
     26      textBoxDescription.DataBindings.Add("Text", VM, nameof(JsonItemVMBase.Description));
    2627      textBoxActualName.DataBindings.Add("Text", VM, nameof(JsonItemVMBase.ActualName));
    2728
    28       //checkBoxActive.Checked = VM.Selected;
    29       //textBoxName.Text = VM.Item.Name;
    3029      if (string.IsNullOrWhiteSpace(VM.Item.ActualName))
    3130        textBoxActualName.ReadOnly = true;
Note: See TracChangeset for help on using the changeset viewer.