[14727] | 1 | namespace HeuristicLab.Problems.ProgramSynthesis.Push.Views {
|
---|
| 2 | partial class ExpressionSelectionView {
|
---|
| 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.groupBox1 = new System.Windows.Forms.GroupBox();
|
---|
| 27 | this.expressionsTreeView = new System.Windows.Forms.TreeView();
|
---|
| 28 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
| 29 | this.groupBox1.SuspendLayout();
|
---|
| 30 | this.SuspendLayout();
|
---|
| 31 | //
|
---|
| 32 | // nameTextBox
|
---|
| 33 | //
|
---|
| 34 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
| 35 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
| 36 | this.nameTextBox.Size = new System.Drawing.Size(244, 20);
|
---|
| 37 | //
|
---|
| 38 | // infoLabel
|
---|
| 39 | //
|
---|
| 40 | this.infoLabel.Location = new System.Drawing.Point(308, 3);
|
---|
| 41 | //
|
---|
| 42 | // groupBox1
|
---|
| 43 | //
|
---|
| 44 | this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 45 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 46 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 47 | this.groupBox1.Controls.Add(this.expressionsTreeView);
|
---|
| 48 | this.groupBox1.Location = new System.Drawing.Point(6, 26);
|
---|
| 49 | this.groupBox1.Name = "groupBox1";
|
---|
| 50 | this.groupBox1.Size = new System.Drawing.Size(318, 426);
|
---|
| 51 | this.groupBox1.TabIndex = 3;
|
---|
| 52 | this.groupBox1.TabStop = false;
|
---|
| 53 | this.groupBox1.Text = "Instructions";
|
---|
| 54 | //
|
---|
| 55 | // expressionsTreeView
|
---|
| 56 | //
|
---|
| 57 | this.expressionsTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 58 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 59 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 60 | this.expressionsTreeView.CheckBoxes = true;
|
---|
| 61 | this.expressionsTreeView.Location = new System.Drawing.Point(6, 19);
|
---|
| 62 | this.expressionsTreeView.Name = "expressionsTreeView";
|
---|
| 63 | this.expressionsTreeView.Size = new System.Drawing.Size(306, 401);
|
---|
| 64 | this.expressionsTreeView.TabIndex = 0;
|
---|
| 65 | //
|
---|
| 66 | // ExpressionSelectionView
|
---|
| 67 | //
|
---|
| 68 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 69 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 70 | this.Controls.Add(this.groupBox1);
|
---|
| 71 | this.Name = "ExpressionSelectionView";
|
---|
| 72 | this.Size = new System.Drawing.Size(327, 455);
|
---|
| 73 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
| 74 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
| 75 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
| 76 | this.Controls.SetChildIndex(this.groupBox1, 0);
|
---|
| 77 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
| 78 | this.groupBox1.ResumeLayout(false);
|
---|
| 79 | this.ResumeLayout(false);
|
---|
| 80 | this.PerformLayout();
|
---|
| 81 |
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | #endregion
|
---|
| 85 |
|
---|
| 86 | private System.Windows.Forms.GroupBox groupBox1;
|
---|
| 87 | private System.Windows.Forms.TreeView expressionsTreeView;
|
---|
| 88 | }
|
---|
| 89 | }
|
---|