Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Views/ExpressionSelectionView.Designer.cs @ 15017

Last change on this file since 15017 was 15017, checked in by pkimmesw, 7 years ago

#2665 Fixed Benchmark Problem Definition, Converted LoopExpressions to stateless expressions, Added several unit test to ensure funcionality, Fixed UI bugs

File size: 2.5 KB
Line 
1namespace 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      this.groupBox1.SuspendLayout();
29      this.SuspendLayout();
30      //
31      // groupBox1
32      //
33      this.groupBox1.Controls.Add(this.expressionsTreeView);
34      this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
35      this.groupBox1.Location = new System.Drawing.Point(0, 0);
36      this.groupBox1.Name = "groupBox1";
37      this.groupBox1.Size = new System.Drawing.Size(327, 455);
38      this.groupBox1.TabIndex = 3;
39      this.groupBox1.TabStop = false;
40      this.groupBox1.Text = "Instructions";
41      //
42      // expressionsTreeView
43      //
44      this.expressionsTreeView.CheckBoxes = true;
45      this.expressionsTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
46      this.expressionsTreeView.Location = new System.Drawing.Point(3, 16);
47      this.expressionsTreeView.Name = "expressionsTreeView";
48      this.expressionsTreeView.Size = new System.Drawing.Size(321, 436);
49      this.expressionsTreeView.TabIndex = 0;
50      //
51      // ExpressionSelectionView
52      //
53      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
54      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
55      this.Controls.Add(this.groupBox1);
56      this.Name = "ExpressionSelectionView";
57      this.Size = new System.Drawing.Size(327, 455);
58      this.groupBox1.ResumeLayout(false);
59      this.ResumeLayout(false);
60
61    }
62
63    #endregion
64
65    private System.Windows.Forms.GroupBox groupBox1;
66    private System.Windows.Forms.TreeView expressionsTreeView;
67  }
68}
Note: See TracBrowser for help on using the repository browser.