Free cookie consent management tool by TermsFeed Policy Generator

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

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

#3026:

  • added a new way to setup the targeted result types
  • added new ui controls: NumericRangeControl, JsonItemArrayControl, JsonItemDefaultControl
  • redesigned export dialog -> now the user can navigate with a tree view
  • enhanced JsonItemVM
File size: 5.3 KB
Line 
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() {
26      this.labelEnable = new System.Windows.Forms.Label();
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();
32      this.SuspendLayout();
33      //
34      // labelEnable
35      //
36      this.labelEnable.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
37            | System.Windows.Forms.AnchorStyles.Right)));
38      this.labelEnable.AutoSize = true;
39      this.labelEnable.Location = new System.Drawing.Point(6, 3);
40      this.labelEnable.Name = "labelEnable";
41      this.labelEnable.Size = new System.Drawing.Size(40, 13);
42      this.labelEnable.TabIndex = 3;
43      this.labelEnable.Text = "Enable";
44      //
45      // checkBoxActive
46      //
47      this.checkBoxActive.AutoSize = true;
48      this.checkBoxActive.Location = new System.Drawing.Point(92, 3);
49      this.checkBoxActive.Name = "checkBoxActive";
50      this.checkBoxActive.Size = new System.Drawing.Size(15, 14);
51      this.checkBoxActive.TabIndex = 2;
52      this.checkBoxActive.UseVisualStyleBackColor = true;
53      this.checkBoxActive.CheckedChanged += new System.EventHandler(this.checkBoxActive_CheckedChanged);
54      //
55      // textBoxActualName
56      //
57      this.textBoxActualName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
58            | System.Windows.Forms.AnchorStyles.Right)));
59      this.textBoxActualName.Location = new System.Drawing.Point(92, 49);
60      this.textBoxActualName.Name = "textBoxActualName";
61      this.textBoxActualName.Size = new System.Drawing.Size(404, 20);
62      this.textBoxActualName.TabIndex = 12;
63      this.textBoxActualName.TextChanged += new System.EventHandler(this.textBoxActualName_TextChanged);
64      //
65      // labelActualName
66      //
67      this.labelActualName.AutoSize = true;
68      this.labelActualName.Location = new System.Drawing.Point(6, 52);
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)));
79      this.textBoxName.Location = new System.Drawing.Point(92, 23);
80      this.textBoxName.Name = "textBoxName";
81      this.textBoxName.ReadOnly = true;
82      this.textBoxName.Size = new System.Drawing.Size(404, 20);
83      this.textBoxName.TabIndex = 10;
84      this.textBoxName.TextChanged += new System.EventHandler(this.textBoxName_TextChanged);
85      //
86      // label1
87      //
88      this.label1.AutoSize = true;
89      this.label1.Location = new System.Drawing.Point(6, 26);
90      this.label1.Name = "label1";
91      this.label1.Size = new System.Drawing.Size(35, 13);
92      this.label1.TabIndex = 9;
93      this.label1.Text = "Name";
94      this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
95      //
96      // JsonItemBaseControl
97      //
98      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
99      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
100      this.Controls.Add(this.labelEnable);
101      this.Controls.Add(this.checkBoxActive);
102      this.Controls.Add(this.textBoxActualName);
103      this.Controls.Add(this.labelActualName);
104      this.Controls.Add(this.textBoxName);
105      this.Controls.Add(this.label1);
106      this.Name = "JsonItemBaseControl";
107      this.Padding = new System.Windows.Forms.Padding(3);
108      this.Size = new System.Drawing.Size(502, 154);
109      this.ResumeLayout(false);
110      this.PerformLayout();
111
112    }
113
114    #endregion
115
116    private System.Windows.Forms.Label labelEnable;
117    private System.Windows.Forms.CheckBox checkBoxActive;
118    private System.Windows.Forms.TextBox textBoxActualName;
119    private System.Windows.Forms.Label labelActualName;
120    private System.Windows.Forms.TextBox textBoxName;
121    private System.Windows.Forms.Label label1;
122  }
123}
Note: See TracBrowser for help on using the repository browser.