[8924] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[15973] | 3 | * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8924] | 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 |
|
---|
| 22 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views {
|
---|
[5829] | 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() {
|
---|
[10540] | 47 | this.exportButton = new System.Windows.Forms.Button();
|
---|
| 48 | this.exportFileDialog = new System.Windows.Forms.SaveFileDialog();
|
---|
[5829] | 49 | this.btnSimplify = new System.Windows.Forms.Button();
|
---|
[11114] | 50 | this.transformModelButton = new System.Windows.Forms.Button();
|
---|
[5829] | 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 | //
|
---|
[10540] | 59 | // flowLayoutPanel
|
---|
[5829] | 60 | //
|
---|
[10540] | 61 | this.flowLayoutPanel.Controls.Add(this.btnSimplify);
|
---|
| 62 | this.flowLayoutPanel.Controls.Add(this.exportButton);
|
---|
[11114] | 63 | this.flowLayoutPanel.Controls.Add(this.transformModelButton);
|
---|
[5829] | 64 | //
|
---|
| 65 | // btnSimplify
|
---|
| 66 | //
|
---|
[10540] | 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;
|
---|
[5829] | 70 | this.btnSimplify.Name = "btnSimplify";
|
---|
[10540] | 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;
|
---|
[5829] | 75 | this.btnSimplify.UseVisualStyleBackColor = true;
|
---|
| 76 | this.btnSimplify.Click += new System.EventHandler(this.btn_SimplifyModel_Click);
|
---|
[10540] | 77 | this.toolTip.SetToolTip(this.btnSimplify, "Simplify solution");
|
---|
[5829] | 78 | //
|
---|
[10540] | 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);
|
---|
[10541] | 91 | this.toolTip.SetToolTip(this.exportButton, "Exports the symbolic regression solution to Excel.");
|
---|
[10540] | 92 | //
|
---|
[11114] | 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";
|
---|
[11156] | 99 | this.transformModelButton.Size = new System.Drawing.Size(135, 24);
|
---|
[11114] | 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 | //
|
---|
[5829] | 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
|
---|
[10540] | 122 | protected System.Windows.Forms.SaveFileDialog exportFileDialog;
|
---|
| 123 | protected System.Windows.Forms.Button exportButton;
|
---|
| 124 | protected System.Windows.Forms.Button btnSimplify;
|
---|
[11114] | 125 | protected System.Windows.Forms.Button transformModelButton;
|
---|
[5829] | 126 | }
|
---|
| 127 | }
|
---|