Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/RunCreation/Views/OKBProblemView.Designer.cs @ 5639

Last change on this file since 5639 was 5639, checked in by swagner, 13 years ago

Worked on OKB (#1174)

File size: 5.4 KB
RevLine 
[5338]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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.Clients.OKB {
23  partial class OKBProblemView {
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) {
35        if (components != null) 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.problemLabel = new System.Windows.Forms.Label();
49      this.problemComboBox = new System.Windows.Forms.ComboBox();
50      this.refreshButton = new System.Windows.Forms.Button();
51      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
52      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
53      this.SuspendLayout();
54      //
55      // problemLabel
56      //
57      this.problemLabel.AutoSize = true;
58      this.problemLabel.Location = new System.Drawing.Point(3, 5);
59      this.problemLabel.Name = "problemLabel";
60      this.problemLabel.Size = new System.Drawing.Size(48, 13);
[5344]61      this.problemLabel.TabIndex = 0;
[5338]62      this.problemLabel.Text = "&Problem:";
63      //
64      // problemComboBox
65      //
66      this.problemComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
67                  | System.Windows.Forms.AnchorStyles.Right)));
68      this.problemComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
69      this.problemComboBox.FormattingEnabled = true;
70      this.problemComboBox.Location = new System.Drawing.Point(57, 1);
71      this.problemComboBox.Name = "problemComboBox";
72      this.problemComboBox.Size = new System.Drawing.Size(551, 21);
[5344]73      this.problemComboBox.TabIndex = 1;
[5338]74      this.problemComboBox.SelectedValueChanged += new System.EventHandler(this.problemComboBox_SelectedValueChanged);
75      //
76      // refreshButton
77      //
78      this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
79      this.refreshButton.Location = new System.Drawing.Point(614, 0);
80      this.refreshButton.Name = "refreshButton";
81      this.refreshButton.Size = new System.Drawing.Size(24, 24);
[5344]82      this.refreshButton.TabIndex = 2;
[5338]83      this.toolTip.SetToolTip(this.refreshButton, "Refresh Problems");
84      this.refreshButton.UseVisualStyleBackColor = true;
85      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
86      //
87      // viewHost
88      //
89      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
90                  | System.Windows.Forms.AnchorStyles.Left)
91                  | System.Windows.Forms.AnchorStyles.Right)));
92      this.viewHost.Caption = "View";
93      this.viewHost.Content = null;
94      this.viewHost.Enabled = false;
95      this.viewHost.Location = new System.Drawing.Point(0, 30);
96      this.viewHost.Name = "viewHost";
97      this.viewHost.ReadOnly = false;
98      this.viewHost.Size = new System.Drawing.Size(638, 422);
[5344]99      this.viewHost.TabIndex = 3;
[5338]100      this.viewHost.ViewsLabelVisible = true;
101      this.viewHost.ViewType = null;
102      //
103      // OKBProblemView
104      //
105      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
106      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
107      this.Controls.Add(this.viewHost);
108      this.Controls.Add(this.problemComboBox);
109      this.Controls.Add(this.problemLabel);
110      this.Controls.Add(this.refreshButton);
111      this.Name = "OKBProblemView";
112      this.Size = new System.Drawing.Size(638, 452);
113      this.ResumeLayout(false);
114      this.PerformLayout();
115
116    }
117
118    #endregion
119
120    private System.Windows.Forms.Label problemLabel;
121    private System.Windows.Forms.ComboBox problemComboBox;
122    private System.Windows.Forms.Button refreshButton;
123    private System.Windows.Forms.ToolTip toolTip;
124    private MainForm.WindowsForms.ViewHost viewHost;
125
126
127
128
129  }
130}
Note: See TracBrowser for help on using the repository browser.