Changeset 17443 for branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Shared
- Timestamp:
- 02/18/20 14:39:50 (5 years ago)
- 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 60 60 this.textBoxActualName.Location = new System.Drawing.Point(92, 75); 61 61 this.textBoxActualName.Name = "textBoxActualName"; 62 this.textBoxActualName.Size = new System.Drawing.Size(40 4, 20);62 this.textBoxActualName.Size = new System.Drawing.Size(402, 20); 63 63 this.textBoxActualName.TabIndex = 12; 64 64 // … … 79 79 this.textBoxName.Location = new System.Drawing.Point(92, 23); 80 80 this.textBoxName.Name = "textBoxName"; 81 this.textBoxName.Size = new System.Drawing.Size(40 4, 20);81 this.textBoxName.Size = new System.Drawing.Size(402, 20); 82 82 this.textBoxName.TabIndex = 10; 83 83 // … … 107 107 this.textBoxDescription.Location = new System.Drawing.Point(92, 49); 108 108 this.textBoxDescription.Name = "textBoxDescription"; 109 this.textBoxDescription.Size = new System.Drawing.Size(40 4, 20);109 this.textBoxDescription.Size = new System.Drawing.Size(402, 20); 110 110 this.textBoxDescription.TabIndex = 14; 111 111 // … … 124 124 this.Name = "JsonItemBaseControl"; 125 125 this.Padding = new System.Windows.Forms.Padding(3); 126 this.Size = new System.Drawing.Size(50 2, 154);126 this.Size = new System.Drawing.Size(500, 154); 127 127 this.ResumeLayout(false); 128 128 this.PerformLayout(); -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Shared/JsonItemBaseControl.cs
r17433 r17443 16 16 InitializeComponent(); 17 17 } 18 18 19 19 public JsonItemBaseControl(JsonItemVMBase vm) { 20 20 InitializeComponent(); … … 31 31 else 32 32 textBoxActualName.Text = VM.Item.ActualName; 33 33 34 } 34 35 }
Note: See TracChangeset
for help on using the changeset viewer.