Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/Shared/NumericRangeControl.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: 5.3 KB
RevLine 
[17410]1namespace HeuristicLab.JsonInterface.OptimizerIntegration {
[17405]2  partial class NumericRangeControl {
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() {
[17444]26      this.components = new System.ComponentModel.Container();
[17405]27      this.textBoxFrom = new System.Windows.Forms.TextBox();
28      this.groupBox2 = new System.Windows.Forms.GroupBox();
29      this.checkBoxTo = new System.Windows.Forms.CheckBox();
30      this.textBoxTo = new System.Windows.Forms.TextBox();
[17444]31      this.checkBoxFrom = new System.Windows.Forms.CheckBox();
32      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
[17405]33      this.groupBox2.SuspendLayout();
[17444]34      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
[17405]35      this.SuspendLayout();
36      //
37      // textBoxFrom
38      //
39      this.textBoxFrom.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
40            | System.Windows.Forms.AnchorStyles.Right)));
[17444]41      this.errorProvider.SetIconAlignment(this.textBoxFrom, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
[17464]42      this.textBoxFrom.Location = new System.Drawing.Point(87, 16);
[17405]43      this.textBoxFrom.Name = "textBoxFrom";
44      this.textBoxFrom.ReadOnly = true;
[17464]45      this.textBoxFrom.Size = new System.Drawing.Size(407, 20);
[17405]46      this.textBoxFrom.TabIndex = 2;
[17444]47      this.textBoxFrom.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxFrom_Validating);
[17405]48      //
49      // groupBox2
50      //
51      this.groupBox2.Controls.Add(this.checkBoxTo);
52      this.groupBox2.Controls.Add(this.textBoxTo);
53      this.groupBox2.Controls.Add(this.checkBoxFrom);
54      this.groupBox2.Controls.Add(this.textBoxFrom);
[17444]55      this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
56      this.groupBox2.Location = new System.Drawing.Point(0, 0);
[17405]57      this.groupBox2.Name = "groupBox2";
[17464]58      this.groupBox2.Size = new System.Drawing.Size(500, 75);
[17405]59      this.groupBox2.TabIndex = 19;
60      this.groupBox2.TabStop = false;
61      this.groupBox2.Text = "Range";
62      //
63      // checkBoxTo
64      //
65      this.checkBoxTo.AutoSize = true;
[17446]66      this.checkBoxTo.Location = new System.Drawing.Point(9, 45);
[17405]67      this.checkBoxTo.Name = "checkBoxTo";
[17446]68      this.checkBoxTo.Size = new System.Drawing.Size(42, 17);
[17405]69      this.checkBoxTo.TabIndex = 7;
[17446]70      this.checkBoxTo.Text = "To:";
[17405]71      this.checkBoxTo.UseVisualStyleBackColor = true;
72      //
73      // textBoxTo
74      //
75      this.textBoxTo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
76            | System.Windows.Forms.AnchorStyles.Right)));
[17444]77      this.errorProvider.SetIconAlignment(this.textBoxTo, System.Windows.Forms.ErrorIconAlignment.TopLeft);
[17464]78      this.textBoxTo.Location = new System.Drawing.Point(87, 42);
[17405]79      this.textBoxTo.Name = "textBoxTo";
80      this.textBoxTo.ReadOnly = true;
[17464]81      this.textBoxTo.Size = new System.Drawing.Size(407, 20);
[17405]82      this.textBoxTo.TabIndex = 6;
[17444]83      this.textBoxTo.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxTo_Validating);
[17405]84      //
[17444]85      // checkBoxFrom
86      //
87      this.checkBoxFrom.AutoSize = true;
[17446]88      this.checkBoxFrom.Location = new System.Drawing.Point(9, 19);
[17444]89      this.checkBoxFrom.Name = "checkBoxFrom";
[17446]90      this.checkBoxFrom.Size = new System.Drawing.Size(52, 17);
[17444]91      this.checkBoxFrom.TabIndex = 4;
[17446]92      this.checkBoxFrom.Text = "From:";
[17444]93      this.checkBoxFrom.UseVisualStyleBackColor = true;
94      //
95      // errorProvider
96      //
97      this.errorProvider.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
98      this.errorProvider.ContainerControl = this;
99      //
[17405]100      // NumericRangeControl
101      //
102      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
103      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
104      this.Controls.Add(this.groupBox2);
105      this.Name = "NumericRangeControl";
[17464]106      this.Size = new System.Drawing.Size(500, 75);
[17405]107      this.groupBox2.ResumeLayout(false);
108      this.groupBox2.PerformLayout();
[17444]109      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
[17405]110      this.ResumeLayout(false);
111
112    }
113
114    #endregion
115    private System.Windows.Forms.TextBox textBoxFrom;
116    private System.Windows.Forms.GroupBox groupBox2;
117    private System.Windows.Forms.CheckBox checkBoxTo;
118    private System.Windows.Forms.TextBox textBoxTo;
119    private System.Windows.Forms.CheckBox checkBoxFrom;
[17444]120    private System.Windows.Forms.ErrorProvider errorProvider;
[17405]121  }
122}
Note: See TracBrowser for help on using the repository browser.