Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.Instances.Views/3.3/ProblemInstanceConsumerView.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: 5.6 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.toolTip = new System.Windows.Forms.ToolTip(this.components);
53      this.SuspendLayout();
54      //
55      // problemInstanceProviderComboBox
56      //
57      this.problemInstanceProviderComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
58      this.problemInstanceProviderComboBox.FormattingEnabled = true;
59      this.problemInstanceProviderComboBox.Location = new System.Drawing.Point(50, 0);
60      this.problemInstanceProviderComboBox.Name = "problemInstanceProviderComboBox";
61      this.problemInstanceProviderComboBox.Size = new System.Drawing.Size(171, 21);
62      this.problemInstanceProviderComboBox.TabIndex = 16;
63      this.problemInstanceProviderComboBox.SelectedIndexChanged += new System.EventHandler(this.problemInstanceProviderComboBox_SelectedIndexChanged);
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(24, 24);
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(3, 3);
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(258, 0);
92      this.problemInstanceProviderViewHost.Name = "problemInstanceProviderViewHost";
93      this.problemInstanceProviderViewHost.ReadOnly = false;
94      this.problemInstanceProviderViewHost.Size = new System.Drawing.Size(433, 22);
95      this.problemInstanceProviderViewHost.TabIndex = 15;
96      this.problemInstanceProviderViewHost.ViewsLabelVisible = false;
97      this.problemInstanceProviderViewHost.ViewType = null;
98      //
99      // ProblemInstanceConsumerView
100      //
101      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
102      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
103      this.Controls.Add(this.problemInstanceProviderViewHost);
104      this.Controls.Add(this.problemInstanceProviderComboBox);
105      this.Controls.Add(this.libraryInfoButton);
106      this.Controls.Add(this.libraryLabel);
107      this.Name = "ProblemInstanceConsumerView";
108      this.Size = new System.Drawing.Size(694, 22);
109      this.ResumeLayout(false);
110      this.PerformLayout();
111
112    }
113
114    #endregion
115
116    private System.Windows.Forms.ComboBox problemInstanceProviderComboBox;
117    private System.Windows.Forms.Button libraryInfoButton;
118    private System.Windows.Forms.Label libraryLabel;
119    private MainForm.WindowsForms.ViewHost problemInstanceProviderViewHost;
120    private System.Windows.Forms.ToolTip toolTip;
121  }
122}
Note: See TracBrowser for help on using the repository browser.