Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.TreeSimplifier/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views/3.4/SymbolicRegressionSolutionView.Designer.cs @ 8935

Last change on this file since 8935 was 8935, checked in by bburlacu, 11 years ago

#1763: Bugfixes and refactoring as suggested in the comments above.

File size: 4.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views {
23  partial class SymbolicRegressionSolutionView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.btnSimplify = new System.Windows.Forms.Button();
48      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
49      this.splitContainer.Panel1.SuspendLayout();
50      this.splitContainer.Panel2.SuspendLayout();
51      this.splitContainer.SuspendLayout();
52      this.itemsGroupBox.SuspendLayout();
53      this.detailsGroupBox.SuspendLayout();
54      this.SuspendLayout();
55      //
56      // splitContainer
57      //
58      //
59      // splitContainer.Panel1
60      //
61      this.splitContainer.Panel1.Controls.Add(this.btnSimplify);
62      this.splitContainer.Size = new System.Drawing.Size(480, 275);
63      this.splitContainer.SplitterDistance = 255;
64      //
65      // itemsGroupBox
66      //
67      this.itemsGroupBox.Size = new System.Drawing.Size(486, 294);
68      //
69      // itemsListView
70      //
71      this.itemsListView.Size = new System.Drawing.Size(249, 238);
72      //
73      // detailsGroupBox
74      //
75      this.detailsGroupBox.Size = new System.Drawing.Size(215, 246);
76      //
77      // addButton
78      //
79      this.toolTip.SetToolTip(this.addButton, "Add");
80      //
81      // removeButton
82      //
83      this.toolTip.SetToolTip(this.removeButton, "Remove");
84      //
85      // viewHost
86      //
87      this.viewHost.Size = new System.Drawing.Size(203, 221);
88      //
89      // btnSimplify
90      //
91      this.btnSimplify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
92      this.btnSimplify.Location = new System.Drawing.Point(177, 4);
93      this.btnSimplify.Name = "btnSimplify";
94      this.btnSimplify.Size = new System.Drawing.Size(75, 23);
95      this.btnSimplify.TabIndex = 6;
96      this.btnSimplify.Text = "Simplify";
97      this.btnSimplify.UseVisualStyleBackColor = true;
98      this.btnSimplify.Click += new System.EventHandler(this.btn_SimplifyModel_Click);
99      //
100      // SymbolicRegressionSolutionView
101      //
102      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
103      this.Name = "SymbolicRegressionSolutionView";
104      this.Size = new System.Drawing.Size(486, 294);
105      this.splitContainer.Panel1.ResumeLayout(false);
106      this.splitContainer.Panel2.ResumeLayout(false);
107      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
108      this.splitContainer.ResumeLayout(false);
109      this.itemsGroupBox.ResumeLayout(false);
110      this.detailsGroupBox.ResumeLayout(false);
111      this.ResumeLayout(false);
112
113    }
114
115    #endregion
116    private System.Windows.Forms.Button btnSimplify;
117  }
118}
Note: See TracBrowser for help on using the repository browser.