Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Views/JsonItemValueControl.Designer.cs @ 17464

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

#3026:

  • Runner now uses SymbolicDataAnalysisExpressionMATLABFormatter to save instances of ISymbolicRegressionSolution
  • refactored user controls for detail view of json items, now they do not inherit from JsonItemBaseControl -> JsonItemBaseControl uses now an extra control
    • this change was made for fluid repositioning of controls (e.g. when no ActualName is present)
File size: 3.9 KB
Line 
1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
2  partial class JsonItemValueControl {
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.components = new System.ComponentModel.Container();
27      this.textBoxValue = new System.Windows.Forms.TextBox();
28      this.label2 = new System.Windows.Forms.Label();
29      this.numericRangeControl1 = new HeuristicLab.JsonInterface.OptimizerIntegration.NumericRangeControl();
30      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
31      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
32      this.SuspendLayout();
33      //
34      // textBoxValue
35      //
36      this.textBoxValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
37            | System.Windows.Forms.AnchorStyles.Right)));
38      this.textBoxValue.Location = new System.Drawing.Point(89, 1);
39      this.textBoxValue.Margin = new System.Windows.Forms.Padding(0);
40      this.textBoxValue.Name = "textBoxValue";
41      this.textBoxValue.Size = new System.Drawing.Size(408, 20);
42      this.textBoxValue.TabIndex = 14;
43      this.textBoxValue.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxValue_Validating);
44      //
45      // label2
46      //
47      this.label2.AutoSize = true;
48      this.label2.Location = new System.Drawing.Point(3, 1);
49      this.label2.Name = "label2";
50      this.label2.Size = new System.Drawing.Size(34, 13);
51      this.label2.TabIndex = 15;
52      this.label2.Text = "Value";
53      //
54      // numericRangeControl1
55      //
56      this.numericRangeControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
57            | System.Windows.Forms.AnchorStyles.Right)));
58      this.numericRangeControl1.Location = new System.Drawing.Point(0, 24);
59      this.numericRangeControl1.Margin = new System.Windows.Forms.Padding(0, 3, 0, 0);
60      this.numericRangeControl1.Name = "numericRangeControl1";
61      this.numericRangeControl1.Size = new System.Drawing.Size(497, 72);
62      this.numericRangeControl1.TabIndex = 16;
63      //
64      // errorProvider
65      //
66      this.errorProvider.ContainerControl = this;
67      //
68      // JsonItemValueControl
69      //
70      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
71      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
72      this.Controls.Add(this.numericRangeControl1);
73      this.Controls.Add(this.label2);
74      this.Controls.Add(this.textBoxValue);
75      this.errorProvider.SetIconAlignment(this, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
76      this.Name = "JsonItemValueControl";
77      this.Size = new System.Drawing.Size(500, 97);
78      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
79      this.ResumeLayout(false);
80      this.PerformLayout();
81
82    }
83
84    #endregion
85
86    private System.Windows.Forms.TextBox textBoxValue;
87    private System.Windows.Forms.Label label2;
88    private NumericRangeControl numericRangeControl1;
89    private System.Windows.Forms.ErrorProvider errorProvider;
90  }
91}
Note: See TracBrowser for help on using the repository browser.