Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1669: First version which can automatically generate data for some problems from http://www.vanillamodeling.com/

File size: 5.9 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      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
52      this.SuspendLayout();
53      //
54      // parameterCollectionView
55      //
56      this.parameterCollectionView.Location = new System.Drawing.Point(3, 55);
57      this.parameterCollectionView.Size = new System.Drawing.Size(490, 279);
58      this.parameterCollectionView.TabIndex = 4;
59      //
60      // nameTextBox
61      //
62      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
63      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
64      this.nameTextBox.Size = new System.Drawing.Size(409, 20);
65      //
66      // infoLabel
67      //
68      this.infoLabel.Location = new System.Drawing.Point(474, 3);
69      //
70      // importButton
71      //
72      this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
73            | System.Windows.Forms.AnchorStyles.Right)));
74      this.importButton.Location = new System.Drawing.Point(3, 24);
75      this.importButton.Name = "importButton";
76      this.importButton.Size = new System.Drawing.Size(243, 23);
77      this.importButton.TabIndex = 3;
78      this.importButton.Text = "Import from CSV file";
79      this.importButton.UseVisualStyleBackColor = true;
80      this.importButton.Click += new System.EventHandler(this.ImportButton_Click);
81      //
82      // openFileDialog
83      //
84      this.openFileDialog.FileName = "openFileDialog";
85      //
86      // benchmarkComboBox
87      //
88      this.benchmarkComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
89      this.benchmarkComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
90      this.benchmarkComboBox.FormattingEnabled = true;
91      this.benchmarkComboBox.Location = new System.Drawing.Point(252, 25);
92      this.benchmarkComboBox.Name = "benchmarkComboBox";
93      this.benchmarkComboBox.Size = new System.Drawing.Size(183, 21);
94      this.benchmarkComboBox.TabIndex = 5;
95      //
96      // loadButton
97      //
98      this.loadButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
99      this.loadButton.Location = new System.Drawing.Point(439, 24);
100      this.loadButton.Name = "loadButton";
101      this.loadButton.Size = new System.Drawing.Size(50, 23);
102      this.loadButton.TabIndex = 6;
103      this.loadButton.Text = "Load";
104      this.loadButton.UseVisualStyleBackColor = true;
105      this.loadButton.Click += new System.EventHandler(this.loadButton_Click);
106      //
107      // DataAnalysisProblemView
108      //
109      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
110      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
111      this.Controls.Add(this.loadButton);
112      this.Controls.Add(this.importButton);
113      this.Controls.Add(this.benchmarkComboBox);
114      this.Name = "DataAnalysisProblemView";
115      this.Size = new System.Drawing.Size(493, 334);
116      this.Controls.SetChildIndex(this.benchmarkComboBox, 0);
117      this.Controls.SetChildIndex(this.importButton, 0);
118      this.Controls.SetChildIndex(this.loadButton, 0);
119      this.Controls.SetChildIndex(this.infoLabel, 0);
120      this.Controls.SetChildIndex(this.nameTextBox, 0);
121      this.Controls.SetChildIndex(this.nameLabel, 0);
122      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
123      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
124      this.ResumeLayout(false);
125      this.PerformLayout();
126
127    }
128
129    #endregion
130
131    private System.Windows.Forms.Button importButton;
132    private System.Windows.Forms.OpenFileDialog openFileDialog;
133    private System.Windows.Forms.ComboBox benchmarkComboBox;
134    private System.Windows.Forms.Button loadButton;
135  }
136}
Note: See TracBrowser for help on using the repository browser.