Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/18/20 14:39:50 (5 years ago)
Author:
dpiringe
Message:

#3026:

  • added support for string values without range limitation (dropdown gets automatically replaced by textbox)
  • fixed a UI bug for JsonItemValidValuesControl -> now the control resizes correctly
  • fixed a bug in AlgorithmConverter -> now it searches for the ItemName (instead of Name) in method Inject
  • fixed a bug in StringValueConverter -> now it sets the correct name
Location:
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Shared
Files:
2 edited

Legend:

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

    r17435 r17443  
    6060      this.textBoxActualName.Location = new System.Drawing.Point(92, 75);
    6161      this.textBoxActualName.Name = "textBoxActualName";
    62       this.textBoxActualName.Size = new System.Drawing.Size(404, 20);
     62      this.textBoxActualName.Size = new System.Drawing.Size(402, 20);
    6363      this.textBoxActualName.TabIndex = 12;
    6464      //
     
    7979      this.textBoxName.Location = new System.Drawing.Point(92, 23);
    8080      this.textBoxName.Name = "textBoxName";
    81       this.textBoxName.Size = new System.Drawing.Size(404, 20);
     81      this.textBoxName.Size = new System.Drawing.Size(402, 20);
    8282      this.textBoxName.TabIndex = 10;
    8383      //
     
    107107      this.textBoxDescription.Location = new System.Drawing.Point(92, 49);
    108108      this.textBoxDescription.Name = "textBoxDescription";
    109       this.textBoxDescription.Size = new System.Drawing.Size(404, 20);
     109      this.textBoxDescription.Size = new System.Drawing.Size(402, 20);
    110110      this.textBoxDescription.TabIndex = 14;
    111111      //
     
    124124      this.Name = "JsonItemBaseControl";
    125125      this.Padding = new System.Windows.Forms.Padding(3);
    126       this.Size = new System.Drawing.Size(502, 154);
     126      this.Size = new System.Drawing.Size(500, 154);
    127127      this.ResumeLayout(false);
    128128      this.PerformLayout();
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Shared/JsonItemBaseControl.cs

    r17433 r17443  
    1616      InitializeComponent();
    1717    }
    18 
     18   
    1919    public JsonItemBaseControl(JsonItemVMBase vm) {
    2020      InitializeComponent();
     
    3131      else
    3232        textBoxActualName.Text = VM.Item.ActualName;
     33       
    3334    }
    3435  }
Note: See TracChangeset for help on using the changeset viewer.