Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RegressionBenchmarks/HeuristicLab.Problems.DataAnalysis.Views/3.4/DataAnalysisProblemView.Designer.cs @ 7085

Last change on this file since 7085 was 7085, checked in by sforsten, 12 years ago

#1669: branch has been merged with the trunk in revision 7081 and methods in RegressionBenchmark have been renamed.

File size: 7.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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.Views {
23  partial class DataAnalysisProblemView {
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.importButton = new System.Windows.Forms.Button();
48      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
49      this.benchmarkComboBox = new System.Windows.Forms.ComboBox();
50      this.loadButton = new System.Windows.Forms.Button();
51      this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
52      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
53      this.tableLayoutPanel1.SuspendLayout();
54      this.SuspendLayout();
55      //
56      // parameterCollectionView
57      //
58      this.parameterCollectionView.Location = new System.Drawing.Point(3, 80);
59      this.parameterCollectionView.Size = new System.Drawing.Size(490, 254);
60      this.parameterCollectionView.TabIndex = 4;
61      //
62      // nameTextBox
63      //
64      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
65      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
66      this.nameTextBox.Size = new System.Drawing.Size(409, 20);
67      //
68      // infoLabel
69      //
70      this.infoLabel.Location = new System.Drawing.Point(474, 3);
71      //
72      // importButton
73      //
74      this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
75            | System.Windows.Forms.AnchorStyles.Right)));
76      this.importButton.Location = new System.Drawing.Point(3, 24);
77      this.importButton.Name = "importButton";
78      this.importButton.Size = new System.Drawing.Size(487, 23);
79      this.importButton.TabIndex = 3;
80      this.importButton.Text = "Import from CSV file";
81      this.importButton.UseVisualStyleBackColor = true;
82      this.importButton.Click += new System.EventHandler(this.ImportButton_Click);
83      //
84      // openFileDialog
85      //
86      this.openFileDialog.Filter = "CSV files|*.csv|Text files|*.txt|All files|*.*";
87      this.openFileDialog.Title = "Import data...";
88      //
89      // benchmarkComboBox
90      //
91      this.benchmarkComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
92            | System.Windows.Forms.AnchorStyles.Right)));
93      this.benchmarkComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
94      this.benchmarkComboBox.FormattingEnabled = true;
95      this.benchmarkComboBox.Location = new System.Drawing.Point(3, 3);
96      this.benchmarkComboBox.Name = "benchmarkComboBox";
97      this.benchmarkComboBox.Size = new System.Drawing.Size(240, 21);
98      this.benchmarkComboBox.TabIndex = 5;
99      //
100      // loadButton
101      //
102      this.loadButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
103            | System.Windows.Forms.AnchorStyles.Right)));
104      this.loadButton.Location = new System.Drawing.Point(249, 2);
105      this.loadButton.Margin = new System.Windows.Forms.Padding(3, 2, 3, 3);
106      this.loadButton.Name = "loadButton";
107      this.loadButton.Size = new System.Drawing.Size(241, 23);
108      this.loadButton.TabIndex = 6;
109      this.loadButton.Text = "Load";
110      this.loadButton.UseVisualStyleBackColor = true;
111      this.loadButton.Click += new System.EventHandler(this.loadButton_Click);
112      //
113      // tableLayoutPanel1
114      //
115      this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
116            | System.Windows.Forms.AnchorStyles.Right)));
117      this.tableLayoutPanel1.ColumnCount = 2;
118      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
119      this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
120      this.tableLayoutPanel1.Controls.Add(this.benchmarkComboBox, 0, 0);
121      this.tableLayoutPanel1.Controls.Add(this.loadButton, 1, 0);
122      this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 51);
123      this.tableLayoutPanel1.Name = "tableLayoutPanel1";
124      this.tableLayoutPanel1.RowCount = 1;
125      this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
126      this.tableLayoutPanel1.Size = new System.Drawing.Size(493, 28);
127      this.tableLayoutPanel1.TabIndex = 7;
128      //
129      // DataAnalysisProblemView
130      //
131      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
132      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
133      this.Controls.Add(this.importButton);
134      this.Controls.Add(this.tableLayoutPanel1);
135      this.Name = "DataAnalysisProblemView";
136      this.Size = new System.Drawing.Size(493, 334);
137      this.Controls.SetChildIndex(this.tableLayoutPanel1, 0);
138      this.Controls.SetChildIndex(this.importButton, 0);
139      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
140      this.Controls.SetChildIndex(this.infoLabel, 0);
141      this.Controls.SetChildIndex(this.nameTextBox, 0);
142      this.Controls.SetChildIndex(this.nameLabel, 0);
143      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
144      this.tableLayoutPanel1.ResumeLayout(false);
145      this.ResumeLayout(false);
146      this.PerformLayout();
147
148    }
149
150    #endregion
151
152    private System.Windows.Forms.Button importButton;
153    private System.Windows.Forms.OpenFileDialog openFileDialog;
154    private System.Windows.Forms.ComboBox benchmarkComboBox;
155    private System.Windows.Forms.Button loadButton;
156    private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
157  }
158}
Note: See TracBrowser for help on using the repository browser.