Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/ExperimentView.Designer.cs @ 4721

Last change on this file since 4721 was 3764, checked in by mkommend, 14 years ago

adapted view captions (ticket #893)

File size: 12.1 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.Optimization.Views {
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      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExperimentView));
48      this.tabControl = new System.Windows.Forms.TabControl();
49      this.optimizersTabPage = new System.Windows.Forms.TabPage();
50      this.optimizerListView = new HeuristicLab.Optimization.Views.OptimizerListView();
51      this.runsTabPage = new System.Windows.Forms.TabPage();
52      this.startButton = new System.Windows.Forms.Button();
53      this.stopButton = new System.Windows.Forms.Button();
54      this.resetButton = new System.Windows.Forms.Button();
55      this.executionTimeLabel = new System.Windows.Forms.Label();
56      this.executionTimeTextBox = new System.Windows.Forms.TextBox();
57      this.pauseButton = new System.Windows.Forms.Button();
58      this.runsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
59      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
60      this.tabControl.SuspendLayout();
61      this.optimizersTabPage.SuspendLayout();
62      this.runsTabPage.SuspendLayout();
63      this.SuspendLayout();
64      //
65      // nameTextBox
66      //
67      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
68      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
69      this.nameTextBox.Size = new System.Drawing.Size(607, 20);
70      //
71      // descriptionTextBox
72      //
73      this.descriptionTextBox.Size = new System.Drawing.Size(607, 20);
74      //
75      // tabControl
76      //
77      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
78                  | System.Windows.Forms.AnchorStyles.Left)
79                  | System.Windows.Forms.AnchorStyles.Right)));
80      this.tabControl.Controls.Add(this.optimizersTabPage);
81      this.tabControl.Controls.Add(this.runsTabPage);
82      this.tabControl.Location = new System.Drawing.Point(0, 52);
83      this.tabControl.Name = "tabControl";
84      this.tabControl.SelectedIndex = 0;
85      this.tabControl.Size = new System.Drawing.Size(679, 400);
86      this.tabControl.TabIndex = 4;
87      //
88      // optimizersTabPage
89      //
90      this.optimizersTabPage.Controls.Add(this.optimizerListView);
91      this.optimizersTabPage.Location = new System.Drawing.Point(4, 22);
92      this.optimizersTabPage.Name = "optimizersTabPage";
93      this.optimizersTabPage.Padding = new System.Windows.Forms.Padding(3);
94      this.optimizersTabPage.Size = new System.Drawing.Size(671, 374);
95      this.optimizersTabPage.TabIndex = 1;
96      this.optimizersTabPage.Text = "Optimizers";
97      this.optimizersTabPage.UseVisualStyleBackColor = true;
98      //
99      // optimizerListView
100      //
101      this.optimizerListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
102                  | System.Windows.Forms.AnchorStyles.Left)
103                  | System.Windows.Forms.AnchorStyles.Right)));
104      this.optimizerListView.Content = null;
105      this.optimizerListView.Location = new System.Drawing.Point(6, 6);
106      this.optimizerListView.Name = "optimizerListView";
107      this.optimizerListView.Size = new System.Drawing.Size(659, 362);
108      this.optimizerListView.TabIndex = 0;
109      //
110      // runsTabPage
111      //
112      this.runsTabPage.Controls.Add(this.runsViewHost);
113      this.runsTabPage.Location = new System.Drawing.Point(4, 22);
114      this.runsTabPage.Name = "runsTabPage";
115      this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
116      this.runsTabPage.Size = new System.Drawing.Size(671, 374);
117      this.runsTabPage.TabIndex = 2;
118      this.runsTabPage.Text = "Runs";
119      this.runsTabPage.UseVisualStyleBackColor = true;
120      //
121      // startButton
122      //
123      this.startButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
124      this.startButton.Image = Common.Resources.VS2008ImageLibrary.Play;
125      this.startButton.Location = new System.Drawing.Point(0, 458);
126      this.startButton.Name = "startButton";
127      this.startButton.Size = new System.Drawing.Size(24, 24);
128      this.startButton.TabIndex = 5;
129      this.toolTip.SetToolTip(this.startButton, "Start/Resume Experiment");
130      this.startButton.UseVisualStyleBackColor = true;
131      this.startButton.Click += new System.EventHandler(this.startButton_Click);
132      //
133      // stopButton
134      //
135      this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
136      this.stopButton.Image = Common.Resources.VS2008ImageLibrary.Stop;
137      this.stopButton.Location = new System.Drawing.Point(60, 458);
138      this.stopButton.Name = "stopButton";
139      this.stopButton.Size = new System.Drawing.Size(24, 24);
140      this.stopButton.TabIndex = 7;
141      this.toolTip.SetToolTip(this.stopButton, "Stop Experiment");
142      this.stopButton.UseVisualStyleBackColor = true;
143      this.stopButton.Click += new System.EventHandler(this.stopButton_Click);
144      //
145      // resetButton
146      //
147      this.resetButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
148      this.resetButton.Image = Common.Resources.VS2008ImageLibrary.Restart;
149      this.resetButton.Location = new System.Drawing.Point(90, 458);
150      this.resetButton.Name = "resetButton";
151      this.resetButton.Size = new System.Drawing.Size(24, 24);
152      this.resetButton.TabIndex = 8;
153      this.toolTip.SetToolTip(this.resetButton, "Reset Experiment");
154      this.resetButton.UseVisualStyleBackColor = true;
155      this.resetButton.Click += new System.EventHandler(this.resetButton_Click);
156      //
157      // executionTimeLabel
158      //
159      this.executionTimeLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
160      this.executionTimeLabel.AutoSize = true;
161      this.executionTimeLabel.Location = new System.Drawing.Point(453, 465);
162      this.executionTimeLabel.Name = "executionTimeLabel";
163      this.executionTimeLabel.Size = new System.Drawing.Size(83, 13);
164      this.executionTimeLabel.TabIndex = 9;
165      this.executionTimeLabel.Text = "&Execution Time:";
166      //
167      // executionTimeTextBox
168      //
169      this.executionTimeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
170      this.executionTimeTextBox.Location = new System.Drawing.Point(542, 462);
171      this.executionTimeTextBox.Name = "executionTimeTextBox";
172      this.executionTimeTextBox.ReadOnly = true;
173      this.executionTimeTextBox.Size = new System.Drawing.Size(137, 20);
174      this.executionTimeTextBox.TabIndex = 10;
175      //
176      // pauseButton
177      //
178      this.pauseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
179      this.pauseButton.Image = Common.Resources.VS2008ImageLibrary.Pause;
180      this.pauseButton.Location = new System.Drawing.Point(30, 458);
181      this.pauseButton.Name = "pauseButton";
182      this.pauseButton.Size = new System.Drawing.Size(24, 24);
183      this.pauseButton.TabIndex = 6;
184      this.toolTip.SetToolTip(this.pauseButton, "Pause Experiment");
185      this.pauseButton.UseVisualStyleBackColor = true;
186      this.pauseButton.Click += new System.EventHandler(this.pauseButton_Click);
187      //
188      // runsViewHost
189      //
190      this.runsViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
191                  | System.Windows.Forms.AnchorStyles.Left)
192                  | System.Windows.Forms.AnchorStyles.Right)));
193      this.runsViewHost.Content = null;
194      this.runsViewHost.Location = new System.Drawing.Point(2, 6);
195      this.runsViewHost.Name = "runsViewHost";
196      this.runsViewHost.Size = new System.Drawing.Size(663, 362);
197      this.runsViewHost.TabIndex = 0;
198      this.runsViewHost.ViewType = null;
199      //
200      // ExperimentView
201      //
202      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
203      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
204      this.Controls.Add(this.tabControl);
205      this.Controls.Add(this.startButton);
206      this.Controls.Add(this.executionTimeTextBox);
207      this.Controls.Add(this.executionTimeLabel);
208      this.Controls.Add(this.pauseButton);
209      this.Controls.Add(this.stopButton);
210      this.Controls.Add(this.resetButton);
211      this.Name = "ExperimentView";
212      this.Size = new System.Drawing.Size(679, 482);
213      this.Controls.SetChildIndex(this.resetButton, 0);
214      this.Controls.SetChildIndex(this.stopButton, 0);
215      this.Controls.SetChildIndex(this.pauseButton, 0);
216      this.Controls.SetChildIndex(this.executionTimeLabel, 0);
217      this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
218      this.Controls.SetChildIndex(this.startButton, 0);
219      this.Controls.SetChildIndex(this.tabControl, 0);
220      this.Controls.SetChildIndex(this.nameLabel, 0);
221      this.Controls.SetChildIndex(this.descriptionLabel, 0);
222      this.Controls.SetChildIndex(this.nameTextBox, 0);
223      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
224      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
225      this.tabControl.ResumeLayout(false);
226      this.optimizersTabPage.ResumeLayout(false);
227      this.runsTabPage.ResumeLayout(false);
228      this.ResumeLayout(false);
229      this.PerformLayout();
230
231    }
232    #endregion
233
234    private System.Windows.Forms.TabControl tabControl;
235    private System.Windows.Forms.TabPage optimizersTabPage;
236    private System.Windows.Forms.Button startButton;
237    private System.Windows.Forms.Button stopButton;
238    private System.Windows.Forms.Button resetButton;
239    private System.Windows.Forms.Label executionTimeLabel;
240    private System.Windows.Forms.TextBox executionTimeTextBox;
241    private System.Windows.Forms.Button pauseButton;
242    private OptimizerListView optimizerListView;
243    private System.Windows.Forms.TabPage runsTabPage;
244    private HeuristicLab.MainForm.WindowsForms.ViewHost runsViewHost;
245
246  }
247}
Note: See TracBrowser for help on using the repository browser.