Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.Instances.Views/3.3/ProblemInstanceProviderViewGeneric.Designer.cs @ 7849

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

#1784:

  • added project HeuristicLab.Problem.Instances.DataAnalysis and deleted HeuristicLab.Problem.Instances.Classification and HeuristicLab.Problem.Instances.Regression
  • buttons are now big enough for the icons
File size: 9.0 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.Instances.Views {
23  partial class ProblemInstanceProviderViewGeneric<T> {
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.components = new System.ComponentModel.Container();
48      this.loadButton = new System.Windows.Forms.Button();
49      this.instanceLabel = new System.Windows.Forms.Label();
50      this.instancesComboBox = new System.Windows.Forms.ComboBox();
51      this.importButton = new System.Windows.Forms.Button();
52      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
53      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
54      this.exportButton = new System.Windows.Forms.Button();
55      this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
56      this.problemInstanceProviderSplitContainer = new System.Windows.Forms.SplitContainer();
57      ((System.ComponentModel.ISupportInitialize)(this.problemInstanceProviderSplitContainer)).BeginInit();
58      this.problemInstanceProviderSplitContainer.Panel1.SuspendLayout();
59      this.problemInstanceProviderSplitContainer.Panel2.SuspendLayout();
60      this.problemInstanceProviderSplitContainer.SuspendLayout();
61      this.SuspendLayout();
62      //
63      // loadButton
64      //
65      this.loadButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
66      this.loadButton.Location = new System.Drawing.Point(604, 0);
67      this.loadButton.Name = "loadButton";
68      this.loadButton.Size = new System.Drawing.Size(24, 24);
69      this.loadButton.TabIndex = 6;
70      this.loadButton.Text = "Load";
71      this.loadButton.UseVisualStyleBackColor = true;
72      this.loadButton.Click += new System.EventHandler(this.loadButton_Click);
73      //
74      // instanceLabel
75      //
76      this.instanceLabel.AutoSize = true;
77      this.instanceLabel.Location = new System.Drawing.Point(3, 4);
78      this.instanceLabel.Name = "instanceLabel";
79      this.instanceLabel.Size = new System.Drawing.Size(51, 13);
80      this.instanceLabel.TabIndex = 4;
81      this.instanceLabel.Text = "Instance:";
82      //
83      // instancesComboBox
84      //
85      this.instancesComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
86            | System.Windows.Forms.AnchorStyles.Right)));
87      this.instancesComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
88      this.instancesComboBox.FormattingEnabled = true;
89      this.instancesComboBox.Location = new System.Drawing.Point(60, 1);
90      this.instancesComboBox.Name = "instancesComboBox";
91      this.instancesComboBox.Size = new System.Drawing.Size(538, 21);
92      this.instancesComboBox.TabIndex = 7;
93      this.instancesComboBox.DataSourceChanged += new System.EventHandler(this.comboBox_DataSourceChanged);
94      //
95      // importButton
96      //
97      this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
98      this.importButton.Location = new System.Drawing.Point(636, 0);
99      this.importButton.Name = "importButton";
100      this.importButton.Size = new System.Drawing.Size(24, 24);
101      this.importButton.TabIndex = 6;
102      this.importButton.Text = "Import";
103      this.importButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
104      this.importButton.UseVisualStyleBackColor = true;
105      this.importButton.Click += new System.EventHandler(this.importButton_Click);
106      //
107      // openFileDialog
108      //
109      this.openFileDialog.Filter = "All files|*.*";
110      //
111      // exportButton
112      //
113      this.exportButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
114      this.exportButton.Location = new System.Drawing.Point(-1, 0);
115      this.exportButton.Name = "exportButton";
116      this.exportButton.Size = new System.Drawing.Size(24, 24);
117      this.exportButton.TabIndex = 8;
118      this.exportButton.Text = "Export";
119      this.exportButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
120      this.exportButton.UseVisualStyleBackColor = true;
121      this.exportButton.Click += new System.EventHandler(this.exportButton_Click);
122      //
123      // saveFileDialog
124      //
125      this.saveFileDialog.Filter = "CSV files|*.csv|All files|*.*";
126      this.saveFileDialog.Title = "Save RegressionInstance...";
127      //
128      // problemInstanceProviderSplitContainer
129      //
130      this.problemInstanceProviderSplitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
131            | System.Windows.Forms.AnchorStyles.Left)
132            | System.Windows.Forms.AnchorStyles.Right)));
133      this.problemInstanceProviderSplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
134      this.problemInstanceProviderSplitContainer.IsSplitterFixed = true;
135      this.problemInstanceProviderSplitContainer.Location = new System.Drawing.Point(0, -1);
136      this.problemInstanceProviderSplitContainer.Name = "problemInstanceProviderSplitContainer";
137      //
138      // problemInstanceProviderSplitContainer.Panel1
139      //
140      this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.instanceLabel);
141      this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.instancesComboBox);
142      this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.importButton);
143      this.problemInstanceProviderSplitContainer.Panel1.Controls.Add(this.loadButton);
144      //
145      // problemInstanceProviderSplitContainer.Panel2
146      //
147      this.problemInstanceProviderSplitContainer.Panel2.Controls.Add(this.exportButton);
148      this.problemInstanceProviderSplitContainer.Size = new System.Drawing.Size(694, 22);
149      this.problemInstanceProviderSplitContainer.SplitterDistance = 665;
150      this.problemInstanceProviderSplitContainer.TabIndex = 9;
151      //
152      // ProblemInstanceProviderView
153      //
154      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
155      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
156      this.Controls.Add(this.problemInstanceProviderSplitContainer);
157      this.Name = "ProblemInstanceProviderView";
158      this.Size = new System.Drawing.Size(694, 21);
159      this.problemInstanceProviderSplitContainer.Panel1.ResumeLayout(false);
160      this.problemInstanceProviderSplitContainer.Panel1.PerformLayout();
161      this.problemInstanceProviderSplitContainer.Panel2.ResumeLayout(false);
162      ((System.ComponentModel.ISupportInitialize)(this.problemInstanceProviderSplitContainer)).EndInit();
163      this.problemInstanceProviderSplitContainer.ResumeLayout(false);
164      this.ResumeLayout(false);
165
166    }
167
168    #endregion
169
170    protected System.Windows.Forms.OpenFileDialog openFileDialog;
171    protected System.Windows.Forms.ToolTip toolTip;
172    protected System.Windows.Forms.Button loadButton;
173    protected System.Windows.Forms.Label instanceLabel;
174    protected System.Windows.Forms.ComboBox instancesComboBox;
175    protected System.Windows.Forms.Button importButton;
176    protected System.Windows.Forms.Button exportButton;
177    protected System.Windows.Forms.SaveFileDialog saveFileDialog;
178    protected System.Windows.Forms.SplitContainer problemInstanceProviderSplitContainer;
179
180  }
181}
Note: See TracBrowser for help on using the repository browser.