Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB (trunk integration)/HeuristicLab.Clients.OKB/3.3/Views/ProblemView.Designer.cs @ 5298

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

Renamed VS2008ImageLibrary to VSImageLibrary (#1174)

File size: 11.8 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 ProblemView {
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.problemClassLabel = new System.Windows.Forms.Label();
50      this.problemClassComboBox = new System.Windows.Forms.ComboBox();
51      this.usersListBox = new System.Windows.Forms.ListBox();
52      this.tabControl = new System.Windows.Forms.TabControl();
53      this.usersTabPage = new System.Windows.Forms.TabPage();
54      this.storeUsersButton = new System.Windows.Forms.Button();
55      this.refreshUsersButton = new System.Windows.Forms.Button();
56      this.dataTabPage = new System.Windows.Forms.TabPage();
57      this.problemDataView = new HeuristicLab.Clients.OKB.ProblemDataView();
58      this.tabControl.SuspendLayout();
59      this.usersTabPage.SuspendLayout();
60      this.dataTabPage.SuspendLayout();
61      this.SuspendLayout();
62      //
63      // nameTextBox
64      //
65      this.nameTextBox.Location = new System.Drawing.Point(90, 29);
66      this.nameTextBox.Size = new System.Drawing.Size(543, 20);
67      //
68      // descriptionTextBox
69      //
70      this.descriptionTextBox.Location = new System.Drawing.Point(90, 55);
71      this.descriptionTextBox.Size = new System.Drawing.Size(543, 20);
72      //
73      // storeButton
74      //
75      this.toolTip.SetToolTip(this.storeButton, "Store Data");
76      //
77      // platformLabel
78      //
79      this.platformLabel.AutoSize = true;
80      this.platformLabel.Location = new System.Drawing.Point(3, 84);
81      this.platformLabel.Name = "platformLabel";
82      this.platformLabel.Size = new System.Drawing.Size(48, 13);
83      this.platformLabel.TabIndex = 5;
84      this.platformLabel.Text = "&Platform:";
85      //
86      // platformComboBox
87      //
88      this.platformComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
89                  | System.Windows.Forms.AnchorStyles.Right)));
90      this.platformComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
91      this.platformComboBox.FormattingEnabled = true;
92      this.platformComboBox.Location = new System.Drawing.Point(90, 81);
93      this.platformComboBox.Name = "platformComboBox";
94      this.platformComboBox.Size = new System.Drawing.Size(543, 21);
95      this.platformComboBox.TabIndex = 6;
96      this.platformComboBox.SelectedValueChanged += new System.EventHandler(this.platformComboBox_SelectedValueChanged);
97      //
98      // problemClassLabel
99      //
100      this.problemClassLabel.AutoSize = true;
101      this.problemClassLabel.Location = new System.Drawing.Point(3, 111);
102      this.problemClassLabel.Name = "problemClassLabel";
103      this.problemClassLabel.Size = new System.Drawing.Size(81, 13);
104      this.problemClassLabel.TabIndex = 7;
105      this.problemClassLabel.Text = "&Problem Class:";
106      //
107      // problemClassComboBox
108      //
109      this.problemClassComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
110                  | System.Windows.Forms.AnchorStyles.Right)));
111      this.problemClassComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
112      this.problemClassComboBox.FormattingEnabled = true;
113      this.problemClassComboBox.Location = new System.Drawing.Point(90, 108);
114      this.problemClassComboBox.Name = "problemClassComboBox";
115      this.problemClassComboBox.Size = new System.Drawing.Size(543, 21);
116      this.problemClassComboBox.TabIndex = 8;
117      this.problemClassComboBox.SelectedValueChanged += new System.EventHandler(this.problemClassComboBox_SelectedValueChanged);
118      //
119      // usersListBox
120      //
121      this.usersListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
122                  | System.Windows.Forms.AnchorStyles.Left)
123                  | System.Windows.Forms.AnchorStyles.Right)));
124      this.usersListBox.Enabled = false;
125      this.usersListBox.FormattingEnabled = true;
126      this.usersListBox.Location = new System.Drawing.Point(6, 36);
127      this.usersListBox.Name = "usersListBox";
128      this.usersListBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
129      this.usersListBox.Size = new System.Drawing.Size(613, 225);
130      this.usersListBox.TabIndex = 2;
131      this.usersListBox.SelectedIndexChanged += new System.EventHandler(this.usersListBox_SelectedIndexChanged);
132      //
133      // tabControl
134      //
135      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
136                  | System.Windows.Forms.AnchorStyles.Left)
137                  | System.Windows.Forms.AnchorStyles.Right)));
138      this.tabControl.Controls.Add(this.usersTabPage);
139      this.tabControl.Controls.Add(this.dataTabPage);
140      this.tabControl.Location = new System.Drawing.Point(0, 162);
141      this.tabControl.Name = "tabControl";
142      this.tabControl.SelectedIndex = 0;
143      this.tabControl.Size = new System.Drawing.Size(633, 292);
144      this.tabControl.TabIndex = 9;
145      //
146      // usersTabPage
147      //
148      this.usersTabPage.Controls.Add(this.storeUsersButton);
149      this.usersTabPage.Controls.Add(this.refreshUsersButton);
150      this.usersTabPage.Controls.Add(this.usersListBox);
151      this.usersTabPage.Location = new System.Drawing.Point(4, 22);
152      this.usersTabPage.Name = "usersTabPage";
153      this.usersTabPage.Padding = new System.Windows.Forms.Padding(3);
154      this.usersTabPage.Size = new System.Drawing.Size(625, 266);
155      this.usersTabPage.TabIndex = 0;
156      this.usersTabPage.Text = "Authorized Users";
157      this.usersTabPage.UseVisualStyleBackColor = true;
158      //
159      // storeUsersButton
160      //
161      this.storeUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.PublishToWeb;
162      this.storeUsersButton.Location = new System.Drawing.Point(36, 6);
163      this.storeUsersButton.Name = "storeUsersButton";
164      this.storeUsersButton.Size = new System.Drawing.Size(24, 24);
165      this.storeUsersButton.TabIndex = 1;
166      this.toolTip.SetToolTip(this.storeUsersButton, "Store Authorized Users");
167      this.storeUsersButton.UseVisualStyleBackColor = true;
168      this.storeUsersButton.Click += new System.EventHandler(this.storeUsersButton_Click);
169      //
170      // refreshUsersButton
171      //
172      this.refreshUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
173      this.refreshUsersButton.Location = new System.Drawing.Point(6, 6);
174      this.refreshUsersButton.Name = "refreshUsersButton";
175      this.refreshUsersButton.Size = new System.Drawing.Size(24, 24);
176      this.refreshUsersButton.TabIndex = 0;
177      this.toolTip.SetToolTip(this.refreshUsersButton, "Refresh Authorized Users");
178      this.refreshUsersButton.UseVisualStyleBackColor = true;
179      this.refreshUsersButton.Click += new System.EventHandler(this.refreshUsersButton_Click);
180      //
181      // dataTabPage
182      //
183      this.dataTabPage.Controls.Add(this.problemDataView);
184      this.dataTabPage.Location = new System.Drawing.Point(4, 22);
185      this.dataTabPage.Name = "dataTabPage";
186      this.dataTabPage.Padding = new System.Windows.Forms.Padding(3);
187      this.dataTabPage.Size = new System.Drawing.Size(625, 266);
188      this.dataTabPage.TabIndex = 1;
189      this.dataTabPage.Text = "Platform-Specific Problem Data";
190      this.dataTabPage.UseVisualStyleBackColor = true;
191      //
192      // problemDataView
193      //
194      this.problemDataView.ProblemId = ((long)(0));
195      this.problemDataView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
196                  | System.Windows.Forms.AnchorStyles.Left)
197                  | System.Windows.Forms.AnchorStyles.Right)));
198      this.problemDataView.Caption = "ProblemData View";
199      this.problemDataView.Content = null;
200      this.problemDataView.Location = new System.Drawing.Point(6, 6);
201      this.problemDataView.Name = "problemDataView";
202      this.problemDataView.ReadOnly = false;
203      this.problemDataView.Size = new System.Drawing.Size(613, 254);
204      this.problemDataView.TabIndex = 0;
205      //
206      // ProblemView
207      //
208      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
209      this.Controls.Add(this.tabControl);
210      this.Controls.Add(this.platformComboBox);
211      this.Controls.Add(this.platformLabel);
212      this.Controls.Add(this.problemClassComboBox);
213      this.Controls.Add(this.problemClassLabel);
214      this.Name = "ProblemView";
215      this.Size = new System.Drawing.Size(633, 454);
216      this.Controls.SetChildIndex(this.problemClassLabel, 0);
217      this.Controls.SetChildIndex(this.problemClassComboBox, 0);
218      this.Controls.SetChildIndex(this.platformLabel, 0);
219      this.Controls.SetChildIndex(this.platformComboBox, 0);
220      this.Controls.SetChildIndex(this.tabControl, 0);
221      this.Controls.SetChildIndex(this.storeButton, 0);
222      this.Controls.SetChildIndex(this.nameTextBox, 0);
223      this.Controls.SetChildIndex(this.nameLabel, 0);
224      this.Controls.SetChildIndex(this.descriptionLabel, 0);
225      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
226      this.tabControl.ResumeLayout(false);
227      this.usersTabPage.ResumeLayout(false);
228      this.dataTabPage.ResumeLayout(false);
229      this.ResumeLayout(false);
230      this.PerformLayout();
231
232    }
233
234    #endregion
235
236    private System.Windows.Forms.Label platformLabel;
237    private System.Windows.Forms.ComboBox platformComboBox;
238    private System.Windows.Forms.Label problemClassLabel;
239    private System.Windows.Forms.ComboBox problemClassComboBox;
240    private System.Windows.Forms.ListBox usersListBox;
241    private System.Windows.Forms.TabControl tabControl;
242    private System.Windows.Forms.TabPage usersTabPage;
243    private System.Windows.Forms.Button storeUsersButton;
244    private System.Windows.Forms.Button refreshUsersButton;
245    private System.Windows.Forms.TabPage dataTabPage;
246    private ProblemDataView problemDataView;
247
248  }
249}
Note: See TracBrowser for help on using the repository browser.