Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProblemInstancesRegressionAndClassification/HeuristicLab.Problems.Instances.Views/3.4/ProblemInstanceConsumerView.Designer.cs @ 7664

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

#1784:

  • added Keijzer, Korns, Vladislavleva und Nguyen regression problem instances
  • changes have been made in the ProblemView. Some parts have been replaced with views from Problems.Instances.Views
File size: 5.5 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 ProblemInstanceConsumerView {
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.problemInstanceProviderComboBox = new System.Windows.Forms.ComboBox();
49      this.libraryInfoButton = new System.Windows.Forms.Button();
50      this.libraryLabel = new System.Windows.Forms.Label();
51      this.problemInstanceProviderViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
52      this.SuspendLayout();
53      //
54      // problemInstanceProviderComboBox
55      //
56      this.problemInstanceProviderComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
57      this.problemInstanceProviderComboBox.FormattingEnabled = true;
58      this.problemInstanceProviderComboBox.Location = new System.Drawing.Point(49, 0);
59      this.problemInstanceProviderComboBox.Name = "problemInstanceProviderComboBox";
60      this.problemInstanceProviderComboBox.Size = new System.Drawing.Size(171, 21);
61      this.problemInstanceProviderComboBox.TabIndex = 16;
62      this.problemInstanceProviderComboBox.SelectedIndexChanged += new System.EventHandler(this.problemInstanceProviderComboBox_SelectedIndexChanged);
63      this.problemInstanceProviderComboBox.DataSourceChanged += new System.EventHandler(this.comboBox_DataSourceChanged);
64      //
65      // libraryInfoButton
66      //
67      this.libraryInfoButton.Location = new System.Drawing.Point(226, -1);
68      this.libraryInfoButton.Name = "libraryInfoButton";
69      this.libraryInfoButton.Size = new System.Drawing.Size(26, 23);
70      this.libraryInfoButton.TabIndex = 17;
71      this.libraryInfoButton.Text = "Info";
72      this.libraryInfoButton.UseVisualStyleBackColor = true;
73      this.libraryInfoButton.Click += new System.EventHandler(this.libraryInfoButton_Click);
74      //
75      // libraryLabel
76      //
77      this.libraryLabel.AutoSize = true;
78      this.libraryLabel.Location = new System.Drawing.Point(5, 4);
79      this.libraryLabel.Name = "libraryLabel";
80      this.libraryLabel.Size = new System.Drawing.Size(41, 13);
81      this.libraryLabel.TabIndex = 15;
82      this.libraryLabel.Text = "Library:";
83      //
84      // problemInstanceProviderViewHost
85      //
86      this.problemInstanceProviderViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
87                  | System.Windows.Forms.AnchorStyles.Right)));
88      this.problemInstanceProviderViewHost.Caption = "View";
89      this.problemInstanceProviderViewHost.Content = null;
90      this.problemInstanceProviderViewHost.Enabled = false;
91      this.problemInstanceProviderViewHost.Location = new System.Drawing.Point(0, 0);
92      this.problemInstanceProviderViewHost.Name = "problemInstanceProviderViewHost";
93      this.problemInstanceProviderViewHost.ReadOnly = false;
94      this.problemInstanceProviderViewHost.Size = new System.Drawing.Size(251, 22);
95      this.problemInstanceProviderViewHost.TabIndex = 15;
96      this.problemInstanceProviderViewHost.ViewsLabelVisible = false;
97      this.problemInstanceProviderViewHost.ViewType = null;
98      //
99      // ProblemInstanceConsumableView
100      //
101      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
102      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
103      this.Controls.Add(this.problemInstanceProviderComboBox);
104      this.Controls.Add(this.libraryInfoButton);
105      this.Controls.Add(this.libraryLabel);
106      this.Name = "ProblemInstanceConsumableView";
107      this.Size = new System.Drawing.Size(694, 21);
108      this.ResumeLayout(false);
109      this.PerformLayout();
110
111    }
112
113    #endregion
114
115    private System.Windows.Forms.ComboBox problemInstanceProviderComboBox;
116    private System.Windows.Forms.Button libraryInfoButton;
117    private System.Windows.Forms.Label libraryLabel;
118    private MainForm.WindowsForms.ViewHost problemInstanceProviderViewHost;
119  }
120}
Note: See TracBrowser for help on using the repository browser.