Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views/3.4/SymbolicRegressionSolutionView.Designer.cs @ 11159

Last change on this file since 11159 was 11159, checked in by mkommend, 10 years ago

#2206: Merged r11114, r11116, r11156 into stable.

File size: 6.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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.exportButton = new System.Windows.Forms.Button();
48      this.exportFileDialog = new System.Windows.Forms.SaveFileDialog();
49      this.btnSimplify = new System.Windows.Forms.Button();
50      this.transformModelButton = new System.Windows.Forms.Button();
51      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
52      this.splitContainer.Panel1.SuspendLayout();
53      this.splitContainer.Panel2.SuspendLayout();
54      this.splitContainer.SuspendLayout();
55      this.itemsGroupBox.SuspendLayout();
56      this.detailsGroupBox.SuspendLayout();
57      this.SuspendLayout();
58      //
59      // flowLayoutPanel
60      //
61      this.flowLayoutPanel.Controls.Add(this.btnSimplify);
62      this.flowLayoutPanel.Controls.Add(this.exportButton);
63      this.flowLayoutPanel.Controls.Add(this.transformModelButton);
64      //
65      // btnSimplify
66      //
67      this.btnSimplify.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
68      this.btnSimplify.Image = HeuristicLab.Common.Resources.VSImageLibrary.FormulaEvaluator;
69      this.btnSimplify.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
70      this.btnSimplify.Name = "btnSimplify";
71      this.btnSimplify.TabIndex = 7;
72      this.btnSimplify.Size = new System.Drawing.Size(105, 24);
73      this.btnSimplify.Text = "Simplify Model";
74      this.btnSimplify.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
75      this.btnSimplify.UseVisualStyleBackColor = true;
76      this.btnSimplify.Click += new System.EventHandler(this.btn_SimplifyModel_Click);
77      this.toolTip.SetToolTip(this.btnSimplify, "Simplify solution");
78      //
79      // exportButton
80      //
81      this.exportButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
82      this.exportButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Statistics;
83      this.exportButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
84      this.exportButton.Name = "exportButton";
85      this.exportButton.Size = new System.Drawing.Size(105, 24);
86      this.exportButton.TabIndex = 8;
87      this.exportButton.Text = "Export to Excel ";
88      this.exportButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
89      this.exportButton.UseVisualStyleBackColor = true;
90      this.exportButton.Click += new System.EventHandler(this.exportButton_Click);
91      this.toolTip.SetToolTip(this.exportButton, "Exports the symbolic regression solution to Excel.");
92      //
93      // transformModelButton
94      //
95      this.transformModelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
96      this.transformModelButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Event;
97      this.transformModelButton.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
98      this.transformModelButton.Name = "transformModelButton";
99      this.transformModelButton.Size = new System.Drawing.Size(135, 24);
100      this.transformModelButton.TabIndex = 9;
101      this.transformModelButton.Text = "Backtransform Model";
102      this.transformModelButton.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
103      this.transformModelButton.UseVisualStyleBackColor = true;
104      this.transformModelButton.Click += new System.EventHandler(this.transformModelButton_Click);
105      this.toolTip.SetToolTip(this.transformModelButton, "Backtransform model based on the stored transformations.");
106      //
107      // SymbolicRegressionSolutionView
108      //
109      this.Name = "SymbolicRegressionSolutionView";
110      this.Size = new System.Drawing.Size(486, 294);
111      this.splitContainer.Panel1.ResumeLayout(false);
112      this.splitContainer.Panel2.ResumeLayout(false);
113      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
114      this.splitContainer.ResumeLayout(false);
115      this.itemsGroupBox.ResumeLayout(false);
116      this.detailsGroupBox.ResumeLayout(false);
117      this.ResumeLayout(false);
118
119    }
120
121    #endregion
122    protected System.Windows.Forms.SaveFileDialog exportFileDialog;
123    protected System.Windows.Forms.Button exportButton;
124    protected System.Windows.Forms.Button btnSimplify;
125    protected System.Windows.Forms.Button transformModelButton;
126  }
127}
Note: See TracBrowser for help on using the repository browser.