Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Shared/JsonItemBaseControl.Designer.cs @ 17435

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

#3026:

  • set read-only to false for name input (in JsonItemBaseControl)
  • result items now can be selected/deselected in export dialog
  • removed metadata.problem property and renamed metadata.optimizer property to TemplateName in json template
  • fixed bug with wrong description for result items in AlgorithmConverter
  • refactored a lot of code in JCGenerator and added the need for a directory path (location for the template files)
  • fixed a null reference bug in JsonItemValidator (cannot try to iterate through possible null referenced collections)
File size: 6.2 KB
RevLine 
[17404]1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
2  partial class JsonItemBaseControl {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
[17405]26      this.labelEnable = new System.Windows.Forms.Label();
[17404]27      this.checkBoxActive = new System.Windows.Forms.CheckBox();
28      this.textBoxActualName = new System.Windows.Forms.TextBox();
29      this.labelActualName = new System.Windows.Forms.Label();
30      this.textBoxName = new System.Windows.Forms.TextBox();
31      this.label1 = new System.Windows.Forms.Label();
[17433]32      this.labelDescription = new System.Windows.Forms.Label();
33      this.textBoxDescription = new System.Windows.Forms.TextBox();
[17404]34      this.SuspendLayout();
35      //
[17405]36      // labelEnable
[17404]37      //
[17405]38      this.labelEnable.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
[17404]39            | System.Windows.Forms.AnchorStyles.Right)));
[17405]40      this.labelEnable.AutoSize = true;
41      this.labelEnable.Location = new System.Drawing.Point(6, 3);
42      this.labelEnable.Name = "labelEnable";
43      this.labelEnable.Size = new System.Drawing.Size(40, 13);
44      this.labelEnable.TabIndex = 3;
45      this.labelEnable.Text = "Enable";
[17404]46      //
47      // checkBoxActive
48      //
49      this.checkBoxActive.AutoSize = true;
[17405]50      this.checkBoxActive.Location = new System.Drawing.Point(92, 3);
[17404]51      this.checkBoxActive.Name = "checkBoxActive";
52      this.checkBoxActive.Size = new System.Drawing.Size(15, 14);
53      this.checkBoxActive.TabIndex = 2;
54      this.checkBoxActive.UseVisualStyleBackColor = true;
55      //
56      // textBoxActualName
57      //
58      this.textBoxActualName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
59            | System.Windows.Forms.AnchorStyles.Right)));
[17433]60      this.textBoxActualName.Location = new System.Drawing.Point(92, 75);
[17404]61      this.textBoxActualName.Name = "textBoxActualName";
[17405]62      this.textBoxActualName.Size = new System.Drawing.Size(404, 20);
[17404]63      this.textBoxActualName.TabIndex = 12;
64      //
65      // labelActualName
66      //
67      this.labelActualName.AutoSize = true;
[17433]68      this.labelActualName.Location = new System.Drawing.Point(6, 78);
[17404]69      this.labelActualName.Name = "labelActualName";
70      this.labelActualName.Size = new System.Drawing.Size(65, 13);
71      this.labelActualName.TabIndex = 11;
72      this.labelActualName.Text = "ActualName";
73      this.labelActualName.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
74      //
75      // textBoxName
76      //
77      this.textBoxName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
78            | System.Windows.Forms.AnchorStyles.Right)));
[17405]79      this.textBoxName.Location = new System.Drawing.Point(92, 23);
[17404]80      this.textBoxName.Name = "textBoxName";
[17405]81      this.textBoxName.Size = new System.Drawing.Size(404, 20);
[17404]82      this.textBoxName.TabIndex = 10;
83      //
84      // label1
85      //
86      this.label1.AutoSize = true;
[17405]87      this.label1.Location = new System.Drawing.Point(6, 26);
[17404]88      this.label1.Name = "label1";
89      this.label1.Size = new System.Drawing.Size(35, 13);
90      this.label1.TabIndex = 9;
91      this.label1.Text = "Name";
92      this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
93      //
[17433]94      // labelDescription
95      //
96      this.labelDescription.AutoSize = true;
97      this.labelDescription.Location = new System.Drawing.Point(6, 52);
98      this.labelDescription.Name = "labelDescription";
99      this.labelDescription.Size = new System.Drawing.Size(60, 13);
100      this.labelDescription.TabIndex = 13;
101      this.labelDescription.Text = "Description";
102      //
103      // textBoxDescription
104      //
105      this.textBoxDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
106            | System.Windows.Forms.AnchorStyles.Right)));
107      this.textBoxDescription.Location = new System.Drawing.Point(92, 49);
108      this.textBoxDescription.Name = "textBoxDescription";
109      this.textBoxDescription.Size = new System.Drawing.Size(404, 20);
110      this.textBoxDescription.TabIndex = 14;
111      //
[17404]112      // JsonItemBaseControl
113      //
114      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
115      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[17433]116      this.Controls.Add(this.textBoxDescription);
117      this.Controls.Add(this.labelDescription);
[17405]118      this.Controls.Add(this.labelEnable);
119      this.Controls.Add(this.checkBoxActive);
[17404]120      this.Controls.Add(this.textBoxActualName);
121      this.Controls.Add(this.labelActualName);
122      this.Controls.Add(this.textBoxName);
123      this.Controls.Add(this.label1);
124      this.Name = "JsonItemBaseControl";
125      this.Padding = new System.Windows.Forms.Padding(3);
[17405]126      this.Size = new System.Drawing.Size(502, 154);
[17404]127      this.ResumeLayout(false);
128      this.PerformLayout();
129
130    }
131
132    #endregion
133
[17405]134    private System.Windows.Forms.Label labelEnable;
[17404]135    private System.Windows.Forms.CheckBox checkBoxActive;
136    private System.Windows.Forms.TextBox textBoxActualName;
137    private System.Windows.Forms.Label labelActualName;
138    private System.Windows.Forms.TextBox textBoxName;
139    private System.Windows.Forms.Label label1;
[17433]140    private System.Windows.Forms.Label labelDescription;
141    private System.Windows.Forms.TextBox textBoxDescription;
[17404]142  }
143}
Note: See TracBrowser for help on using the repository browser.