Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.Clients.OKB-3.3/Views/AlgorithmView.Designer.cs @ 4441

Last change on this file since 4441 was 4441, checked in by swagner, 14 years ago

Worked on OKB data model and services (#1174)

File size: 6.5 KB
Line 
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 AlgorithmView {
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.platformLabel = new System.Windows.Forms.Label();
48      this.platformComboBox = new System.Windows.Forms.ComboBox();
49      this.algorithmClassLabel = new System.Windows.Forms.Label();
50      this.algorithmClassComboBox = new System.Windows.Forms.ComboBox();
51      ((System.ComponentModel.ISupportInitialize)(this.modifiedPictureBox)).BeginInit();
52      this.SuspendLayout();
53      //
54      // nameTextBox
55      //
56      this.nameTextBox.Location = new System.Drawing.Point(90, 29);
57      this.nameTextBox.Size = new System.Drawing.Size(197, 20);
58      //
59      // descriptionTextBox
60      //
61      this.descriptionTextBox.Location = new System.Drawing.Point(90, 55);
62      this.descriptionTextBox.Size = new System.Drawing.Size(197, 20);
63      //
64      // storeButton
65      //
66      this.toolTip.SetToolTip(this.storeButton, "Store Data");
67      //
68      // modifiedPictureBox
69      //
70      this.modifiedPictureBox.Location = new System.Drawing.Point(293, 3);
71      this.modifiedPictureBox.Size = new System.Drawing.Size(39, 130);
72      //
73      // platformLabel
74      //
75      this.platformLabel.AutoSize = true;
76      this.platformLabel.Location = new System.Drawing.Point(3, 84);
77      this.platformLabel.Name = "platformLabel";
78      this.platformLabel.Size = new System.Drawing.Size(48, 13);
79      this.platformLabel.TabIndex = 5;
80      this.platformLabel.Text = "&Platform:";
81      //
82      // platformComboBox
83      //
84      this.platformComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
85                  | System.Windows.Forms.AnchorStyles.Right)));
86      this.platformComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
87      this.platformComboBox.FormattingEnabled = true;
88      this.platformComboBox.Location = new System.Drawing.Point(90, 81);
89      this.platformComboBox.Name = "platformComboBox";
90      this.platformComboBox.Size = new System.Drawing.Size(197, 21);
91      this.platformComboBox.TabIndex = 6;
92      this.platformComboBox.SelectedValueChanged += new System.EventHandler(this.platformComboBox_SelectedValueChanged);
93      //
94      // algorithmClassLabel
95      //
96      this.algorithmClassLabel.AutoSize = true;
97      this.algorithmClassLabel.Location = new System.Drawing.Point(3, 111);
98      this.algorithmClassLabel.Name = "algorithmClassLabel";
99      this.algorithmClassLabel.Size = new System.Drawing.Size(81, 13);
100      this.algorithmClassLabel.TabIndex = 7;
101      this.algorithmClassLabel.Text = "&Algorithm Class:";
102      //
103      // algorithmClassComboBox
104      //
105      this.algorithmClassComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
106                  | System.Windows.Forms.AnchorStyles.Right)));
107      this.algorithmClassComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
108      this.algorithmClassComboBox.FormattingEnabled = true;
109      this.algorithmClassComboBox.Location = new System.Drawing.Point(90, 108);
110      this.algorithmClassComboBox.Name = "algorithmClassComboBox";
111      this.algorithmClassComboBox.Size = new System.Drawing.Size(197, 21);
112      this.algorithmClassComboBox.TabIndex = 8;
113      this.algorithmClassComboBox.SelectedValueChanged += new System.EventHandler(this.algorithmClassComboBox_SelectedValueChanged);
114      //
115      // AlgorithmView
116      //
117      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
118      this.Controls.Add(this.platformComboBox);
119      this.Controls.Add(this.platformLabel);
120      this.Controls.Add(this.algorithmClassComboBox);
121      this.Controls.Add(this.algorithmClassLabel);
122      this.Name = "AlgorithmView";
123      this.Size = new System.Drawing.Size(335, 275);
124      this.Controls.SetChildIndex(this.modifiedPictureBox, 0);
125      this.Controls.SetChildIndex(this.algorithmClassLabel, 0);
126      this.Controls.SetChildIndex(this.algorithmClassComboBox, 0);
127      this.Controls.SetChildIndex(this.platformLabel, 0);
128      this.Controls.SetChildIndex(this.platformComboBox, 0);
129      this.Controls.SetChildIndex(this.storeButton, 0);
130      this.Controls.SetChildIndex(this.nameTextBox, 0);
131      this.Controls.SetChildIndex(this.nameLabel, 0);
132      this.Controls.SetChildIndex(this.descriptionLabel, 0);
133      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
134      ((System.ComponentModel.ISupportInitialize)(this.modifiedPictureBox)).EndInit();
135      this.ResumeLayout(false);
136      this.PerformLayout();
137
138    }
139
140    #endregion
141
142    private System.Windows.Forms.Label platformLabel;
143    private System.Windows.Forms.ComboBox platformComboBox;
144    private System.Windows.Forms.Label algorithmClassLabel;
145    private System.Windows.Forms.ComboBox algorithmClassComboBox;
146
147  }
148}
Note: See TracBrowser for help on using the repository browser.