Free cookie consent management tool by TermsFeed Policy Generator

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

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

#3026:

  • fixed a bug in BaseConverter -> the range for percent values should be returned correctly now
  • fixed a bug in ConstrainedValueParameterConverter, ParameterizedItemConverter, ValueParameterConverter -> unsupported json items get filtered now
  • JCGenerator is now a dynamic class and can return all JsonItems for an IOptimizer now (instead of string only) + it is now possible to generate an template string with an IEnumerable<JsonItem>
  • added first version of an export dialog for JsonInterface
    • it is organized with a main view (for the dialog) and some user controls (for a better visualization of an JsonItem -> to reduce wrong user inputs)
    • the user controls inherit a base control, which organizes some base values of an JsonItem
File size: 2.2 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.SuspendLayout();
28      //
29      // checkBoxValue
30      //
31      this.checkBoxValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
32            | System.Windows.Forms.AnchorStyles.Right)));
33      this.checkBoxValue.AutoSize = true;
34      this.checkBoxValue.Location = new System.Drawing.Point(92, 84);
35      this.checkBoxValue.Name = "checkBoxValue";
36      this.checkBoxValue.Size = new System.Drawing.Size(15, 14);
37      this.checkBoxValue.TabIndex = 19;
38      this.checkBoxValue.UseVisualStyleBackColor = true;
39      this.checkBoxValue.CheckStateChanged += new System.EventHandler(this.checkBoxValue_CheckStateChanged);
40      //
41      // JsonItemBoolControl
42      //
43      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
44      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
45      this.BackColor = System.Drawing.SystemColors.Control;
46      this.Controls.Add(this.checkBoxValue);
47      this.Name = "JsonItemBoolControl";
48      this.Size = new System.Drawing.Size(500, 105);
49      this.Controls.SetChildIndex(this.checkBoxValue, 0);
50      this.ResumeLayout(false);
51      this.PerformLayout();
52
53    }
54
55    #endregion
56    private System.Windows.Forms.CheckBox checkBoxValue;
57  }
58}
Note: See TracBrowser for help on using the repository browser.