Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.Clients.OKB-3.3/Views/ExperimentView.Designer.cs @ 6752

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

Renamed VS2008ImageLibrary to VSImageLibrary (#1174)

File size: 11.6 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 ExperimentView {
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      System.Windows.Forms.ListViewGroup listViewGroup1 = new System.Windows.Forms.ListViewGroup("Algorithm Parameters", System.Windows.Forms.HorizontalAlignment.Left);
49      System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Problem Parameters", System.Windows.Forms.HorizontalAlignment.Left);
50      this.algorithmLabel = new System.Windows.Forms.Label();
51      this.algorithmTextBox = new System.Windows.Forms.TextBox();
52      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
53      this.problemLabel = new System.Windows.Forms.Label();
54      this.problemTextBox = new System.Windows.Forms.TextBox();
55      this.tabControl = new System.Windows.Forms.TabControl();
56      this.parametersTabPage = new System.Windows.Forms.TabPage();
57      this.parametersListView = new System.Windows.Forms.ListView();
58      this.nameColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
59      this.valueColumnHeader = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
60      this.imageList = new System.Windows.Forms.ImageList(this.components);
61      this.runsTabPage = new System.Windows.Forms.TabPage();
62      this.runCollectionView = new HeuristicLab.Clients.OKB.RunCollectionView();
63      this.refreshRunsButton = new System.Windows.Forms.Button();
64      this.tabControl.SuspendLayout();
65      this.parametersTabPage.SuspendLayout();
66      this.runsTabPage.SuspendLayout();
67      this.SuspendLayout();
68      //
69      // algorithmLabel
70      //
71      this.algorithmLabel.AutoSize = true;
72      this.algorithmLabel.Location = new System.Drawing.Point(3, 3);
73      this.algorithmLabel.Name = "algorithmLabel";
74      this.algorithmLabel.Size = new System.Drawing.Size(53, 13);
75      this.algorithmLabel.TabIndex = 0;
76      this.algorithmLabel.Text = "Algorithm:";
77      //
78      // algorithmTextBox
79      //
80      this.algorithmTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
81                  | System.Windows.Forms.AnchorStyles.Right)));
82      this.algorithmTextBox.Location = new System.Drawing.Point(62, 0);
83      this.algorithmTextBox.Name = "algorithmTextBox";
84      this.algorithmTextBox.ReadOnly = true;
85      this.algorithmTextBox.Size = new System.Drawing.Size(451, 20);
86      this.algorithmTextBox.TabIndex = 1;
87      //
88      // problemLabel
89      //
90      this.problemLabel.AutoSize = true;
91      this.problemLabel.Location = new System.Drawing.Point(3, 29);
92      this.problemLabel.Name = "problemLabel";
93      this.problemLabel.Size = new System.Drawing.Size(48, 13);
94      this.problemLabel.TabIndex = 2;
95      this.problemLabel.Text = "Problem:";
96      //
97      // problemTextBox
98      //
99      this.problemTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
100                  | System.Windows.Forms.AnchorStyles.Right)));
101      this.problemTextBox.Location = new System.Drawing.Point(62, 26);
102      this.problemTextBox.Name = "problemTextBox";
103      this.problemTextBox.ReadOnly = true;
104      this.problemTextBox.Size = new System.Drawing.Size(451, 20);
105      this.problemTextBox.TabIndex = 3;
106      //
107      // tabControl
108      //
109      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
110                  | System.Windows.Forms.AnchorStyles.Left)
111                  | System.Windows.Forms.AnchorStyles.Right)));
112      this.tabControl.Controls.Add(this.parametersTabPage);
113      this.tabControl.Controls.Add(this.runsTabPage);
114      this.tabControl.Location = new System.Drawing.Point(0, 52);
115      this.tabControl.Name = "tabControl";
116      this.tabControl.SelectedIndex = 0;
117      this.tabControl.Size = new System.Drawing.Size(513, 302);
118      this.tabControl.TabIndex = 4;
119      //
120      // parametersTabPage
121      //
122      this.parametersTabPage.Controls.Add(this.parametersListView);
123      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
124      this.parametersTabPage.Name = "parametersTabPage";
125      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
126      this.parametersTabPage.Size = new System.Drawing.Size(505, 276);
127      this.parametersTabPage.TabIndex = 0;
128      this.parametersTabPage.Text = "Parameters";
129      this.parametersTabPage.UseVisualStyleBackColor = true;
130      //
131      // parametersListView
132      //
133      this.parametersListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
134                  | System.Windows.Forms.AnchorStyles.Left)
135                  | System.Windows.Forms.AnchorStyles.Right)));
136      this.parametersListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
137            this.nameColumnHeader,
138            this.valueColumnHeader});
139      this.parametersListView.FullRowSelect = true;
140      listViewGroup1.Header = "Algorithm Parameters";
141      listViewGroup1.Name = "algorithmParametersGroup";
142      listViewGroup2.Header = "Problem Parameters";
143      listViewGroup2.Name = "problemParametersGroup";
144      this.parametersListView.Groups.AddRange(new System.Windows.Forms.ListViewGroup[] {
145            listViewGroup1,
146            listViewGroup2});
147      this.parametersListView.HideSelection = false;
148      this.parametersListView.Location = new System.Drawing.Point(6, 6);
149      this.parametersListView.MultiSelect = false;
150      this.parametersListView.Name = "parametersListView";
151      this.parametersListView.ShowItemToolTips = true;
152      this.parametersListView.Size = new System.Drawing.Size(493, 264);
153      this.parametersListView.SmallImageList = this.imageList;
154      this.parametersListView.Sorting = System.Windows.Forms.SortOrder.Ascending;
155      this.parametersListView.TabIndex = 0;
156      this.parametersListView.UseCompatibleStateImageBehavior = false;
157      this.parametersListView.View = System.Windows.Forms.View.Details;
158      //
159      // nameColumnHeader
160      //
161      this.nameColumnHeader.Text = "Name";
162      //
163      // valueColumnHeader
164      //
165      this.valueColumnHeader.Text = "Value";
166      //
167      // imageList
168      //
169      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
170      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
171      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
172      //
173      // runsTabPage
174      //
175      this.runsTabPage.Controls.Add(this.runCollectionView);
176      this.runsTabPage.Controls.Add(this.refreshRunsButton);
177      this.runsTabPage.Location = new System.Drawing.Point(4, 22);
178      this.runsTabPage.Name = "runsTabPage";
179      this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
180      this.runsTabPage.Size = new System.Drawing.Size(505, 276);
181      this.runsTabPage.TabIndex = 1;
182      this.runsTabPage.Text = "Runs";
183      this.runsTabPage.UseVisualStyleBackColor = true;
184      //
185      // runCollectionView
186      //
187      this.runCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
188                  | System.Windows.Forms.AnchorStyles.Left)
189                  | System.Windows.Forms.AnchorStyles.Right)));
190      this.runCollectionView.Caption = "RunCollection View";
191      this.runCollectionView.Content = null;
192      this.runCollectionView.Location = new System.Drawing.Point(6, 36);
193      this.runCollectionView.Name = "runCollectionView";
194      this.runCollectionView.ReadOnly = false;
195      this.runCollectionView.Size = new System.Drawing.Size(493, 234);
196      this.runCollectionView.TabIndex = 1;
197      //
198      // refreshRunsButton
199      //
200      this.refreshRunsButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Refresh;
201      this.refreshRunsButton.Location = new System.Drawing.Point(6, 6);
202      this.refreshRunsButton.Name = "refreshRunsButton";
203      this.refreshRunsButton.Size = new System.Drawing.Size(24, 24);
204      this.refreshRunsButton.TabIndex = 0;
205      this.refreshRunsButton.UseVisualStyleBackColor = true;
206      this.refreshRunsButton.Click += new System.EventHandler(this.refreshRunsButton_Click);
207      //
208      // ExperimentView
209      //
210      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
211      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
212      this.Controls.Add(this.tabControl);
213      this.Controls.Add(this.problemTextBox);
214      this.Controls.Add(this.algorithmTextBox);
215      this.Controls.Add(this.problemLabel);
216      this.Controls.Add(this.algorithmLabel);
217      this.Name = "ExperimentView";
218      this.Size = new System.Drawing.Size(513, 354);
219      this.tabControl.ResumeLayout(false);
220      this.parametersTabPage.ResumeLayout(false);
221      this.runsTabPage.ResumeLayout(false);
222      this.ResumeLayout(false);
223      this.PerformLayout();
224
225    }
226
227    #endregion
228
229    private System.Windows.Forms.Label algorithmLabel;
230    private System.Windows.Forms.TextBox algorithmTextBox;
231    private System.Windows.Forms.ToolTip toolTip;
232    private System.Windows.Forms.Label problemLabel;
233    private System.Windows.Forms.TextBox problemTextBox;
234    private System.Windows.Forms.TabControl tabControl;
235    private System.Windows.Forms.TabPage parametersTabPage;
236    private System.Windows.Forms.TabPage runsTabPage;
237    private RunCollectionView runCollectionView;
238    private System.Windows.Forms.Button refreshRunsButton;
239    private System.Windows.Forms.ListView parametersListView;
240    private System.Windows.Forms.ColumnHeader nameColumnHeader;
241    private System.Windows.Forms.ColumnHeader valueColumnHeader;
242    private System.Windows.Forms.ImageList imageList;
243
244  }
245}
Note: See TracBrowser for help on using the repository browser.