Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Views/3.4/ParsedConstraintView.designer.cs @ 16756

Last change on this file since 16756 was 16756, checked in by chaider, 5 years ago

#2971 Changed Interval Constraints View
-Added View for successfully parsed Constraints
-Save Constraints as IntervalConstraints

File size: 4.3 KB
Line 
1namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
2  partial class ParsedConstraintView {
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.splitContainer1 = new System.Windows.Forms.SplitContainer();
27      this.parseBtn = new System.Windows.Forms.Button();
28      this.constraintsOutput = new System.Windows.Forms.TextBox();
29      this.constraintsInput = new System.Windows.Forms.TextBox();
30      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
31      this.splitContainer1.Panel1.SuspendLayout();
32      this.splitContainer1.Panel2.SuspendLayout();
33      this.splitContainer1.SuspendLayout();
34      this.SuspendLayout();
35      //
36      // splitContainer1
37      //
38      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
39      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
40      this.splitContainer1.Name = "splitContainer1";
41      this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
42      //
43      // splitContainer1.Panel1
44      //
45      this.splitContainer1.Panel1.Controls.Add(this.constraintsInput);
46      this.splitContainer1.Panel1.Controls.Add(this.constraintsOutput);
47      //
48      // splitContainer1.Panel2
49      //
50      this.splitContainer1.Panel2.Controls.Add(this.parseBtn);
51      this.splitContainer1.Size = new System.Drawing.Size(517, 386);
52      this.splitContainer1.SplitterDistance = 347;
53      this.splitContainer1.TabIndex = 0;
54      //
55      // parseBtn
56      //
57      this.parseBtn.Location = new System.Drawing.Point(3, 3);
58      this.parseBtn.Name = "parseBtn";
59      this.parseBtn.Size = new System.Drawing.Size(75, 23);
60      this.parseBtn.TabIndex = 0;
61      this.parseBtn.Text = "Parse";
62      this.parseBtn.UseVisualStyleBackColor = true;
63      this.parseBtn.Click += new System.EventHandler(this.parseBtn_Click);
64      //
65      // constraintsOutput
66      //
67      this.constraintsOutput.Dock = System.Windows.Forms.DockStyle.Right;
68      this.constraintsOutput.Location = new System.Drawing.Point(276, 0);
69      this.constraintsOutput.Multiline = true;
70      this.constraintsOutput.Name = "constraintsOutput";
71      this.constraintsOutput.Size = new System.Drawing.Size(241, 347);
72      this.constraintsOutput.TabIndex = 0;
73      //
74      // constraintsInput
75      //
76      this.constraintsInput.Dock = System.Windows.Forms.DockStyle.Left;
77      this.constraintsInput.Location = new System.Drawing.Point(0, 0);
78      this.constraintsInput.Multiline = true;
79      this.constraintsInput.Name = "constraintsInput";
80      this.constraintsInput.Size = new System.Drawing.Size(241, 347);
81      this.constraintsInput.TabIndex = 1;
82      //
83      // ParsedConstraintView
84      //
85      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
86      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
87      this.Controls.Add(this.splitContainer1);
88      this.Name = "ParsedConstraintView";
89      this.Size = new System.Drawing.Size(517, 386);
90      this.splitContainer1.Panel1.ResumeLayout(false);
91      this.splitContainer1.Panel1.PerformLayout();
92      this.splitContainer1.Panel2.ResumeLayout(false);
93      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
94      this.splitContainer1.ResumeLayout(false);
95      this.ResumeLayout(false);
96
97    }
98
99    #endregion
100
101    private System.Windows.Forms.SplitContainer splitContainer1;
102    private System.Windows.Forms.Button parseBtn;
103    private System.Windows.Forms.TextBox constraintsInput;
104    private System.Windows.Forms.TextBox constraintsOutput;
105  }
106}
Note: See TracBrowser for help on using the repository browser.