Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 17530 was 17477, checked in by dpiringe, 5 years ago

#3026:

  • refactored JsonTemplateInstantiator -> now returns a InstantiatorResult which contains the optimizer and an IEnumerable of IResultJsonItem
  • code cleanup in JCGenerator
  • relocated the serialization of json items into IJsonItem with method GenerateJObject (virtual base implementation in JsonItem)
    • this allows custom serialization for json items (example: ValueLookupJsonItem)
    • items of interface IIntervalRestrictedJsonItem have a custom implementation of GenerateJObject -> hides Minimum and Maximum if the values are the physically min/max of their type
  • code cleanup in BaseConverter
File size: 3.9 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.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
29      this.tableLayoutPanel1.SuspendLayout();
30      this.SuspendLayout();
31      //
32      // checkBoxValue
33      //
34      this.checkBoxValue.AutoSize = true;
35      this.checkBoxValue.Dock = System.Windows.Forms.DockStyle.Fill;
36      this.checkBoxValue.Location = new System.Drawing.Point(100, 0);
37      this.checkBoxValue.Margin = new System.Windows.Forms.Padding(0);
38      this.checkBoxValue.Name = "checkBoxValue";
39      this.checkBoxValue.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
40      this.checkBoxValue.Size = new System.Drawing.Size(400, 22);
41      this.checkBoxValue.TabIndex = 19;
42      this.checkBoxValue.UseVisualStyleBackColor = true;
43      //
44      // label2
45      //
46      this.label2.AutoSize = true;
47      this.label2.Dock = System.Windows.Forms.DockStyle.Fill;
48      this.label2.Location = new System.Drawing.Point(0, 0);
49      this.label2.Margin = new System.Windows.Forms.Padding(0);
50      this.label2.Name = "label2";
51      this.label2.Size = new System.Drawing.Size(100, 22);
52      this.label2.TabIndex = 20;
53      this.label2.Text = "Value";
54      this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
55      //
56      // tableLayoutPanel1
57      //
58      this.tableLayoutPanel1.ColumnCount = 2;
59      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
60      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
61      this.tableLayoutPanel1.Controls.Add(this.checkBoxValue, 1, 0);
62      this.tableLayoutPanel1.Controls.Add(this.label2, 0, 0);
63      this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Top;
64      this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
65      this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(0);
66      this.tableLayoutPanel1.Name = "tableLayoutPanel1";
67      this.tableLayoutPanel1.RowCount = 1;
68      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
69      this.tableLayoutPanel1.Size = new System.Drawing.Size(500, 22);
70      this.tableLayoutPanel1.TabIndex = 22;
71      //
72      // JsonItemBoolControl
73      //
74      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
75      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
76      this.Controls.Add(this.tableLayoutPanel1);
77      this.Margin = new System.Windows.Forms.Padding(0);
78      this.Name = "JsonItemBoolControl";
79      this.Size = new System.Drawing.Size(500, 22);
80      this.tableLayoutPanel1.ResumeLayout(false);
81      this.tableLayoutPanel1.PerformLayout();
82      this.ResumeLayout(false);
83
84    }
85
86    #endregion
87    private System.Windows.Forms.CheckBox checkBoxValue;
88    private System.Windows.Forms.Label label2;
89    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
90  }
91}
Note: See TracBrowser for help on using the repository browser.