Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Views/JsonItemBoolControl.Designer.cs @ 17433

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

#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 size: 2.6 KB
Line 
1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
2  partial class JsonItemBoolControl {
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.checkBoxValue = new System.Windows.Forms.CheckBox();
27      this.label2 = new System.Windows.Forms.Label();
28      this.SuspendLayout();
29      //
30      // checkBoxValue
31      //
32      this.checkBoxValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
33            | System.Windows.Forms.AnchorStyles.Right)));
34      this.checkBoxValue.AutoSize = true;
35      this.checkBoxValue.Location = new System.Drawing.Point(92, 101);
36      this.checkBoxValue.Name = "checkBoxValue";
37      this.checkBoxValue.Size = new System.Drawing.Size(15, 14);
38      this.checkBoxValue.TabIndex = 19;
39      this.checkBoxValue.UseVisualStyleBackColor = true;
40      //
41      // label2
42      //
43      this.label2.AutoSize = true;
44      this.label2.Location = new System.Drawing.Point(6, 101);
45      this.label2.Name = "label2";
46      this.label2.Size = new System.Drawing.Size(34, 13);
47      this.label2.TabIndex = 20;
48      this.label2.Text = "Value";
49      //
50      // JsonItemBoolControl
51      //
52      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
53      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
54      this.BackColor = System.Drawing.SystemColors.Control;
55      this.Controls.Add(this.label2);
56      this.Controls.Add(this.checkBoxValue);
57      this.Name = "JsonItemBoolControl";
58      this.Size = new System.Drawing.Size(500, 140);
59      this.Controls.SetChildIndex(this.checkBoxValue, 0);
60      this.Controls.SetChildIndex(this.label2, 0);
61      this.ResumeLayout(false);
62      this.PerformLayout();
63
64    }
65
66    #endregion
67    private System.Windows.Forms.CheckBox checkBoxValue;
68    private System.Windows.Forms.Label label2;
69  }
70}
Note: See TracBrowser for help on using the repository browser.