Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/CreateExperimentDialog.Designer.cs @ 4104

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

Implemented dialog for creating an experiment for an algorithm (#1106)

File size: 8.0 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 CreateExperimentDialog {
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 && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form 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.okButton = new System.Windows.Forms.Button();
49      this.cancelButton = new System.Windows.Forms.Button();
50      this.createBatchRunCheckBox = new System.Windows.Forms.CheckBox();
51      this.createBatchRunLabel = new System.Windows.Forms.Label();
52      this.repetitionsLabel = new System.Windows.Forms.Label();
53      this.repetitionsNumericUpDown = new System.Windows.Forms.NumericUpDown();
54      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
55      ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).BeginInit();
56      this.SuspendLayout();
57      //
58      // okButton
59      //
60      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
61      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
62      this.okButton.Enabled = false;
63      this.okButton.Location = new System.Drawing.Point(113, 58);
64      this.okButton.Name = "okButton";
65      this.okButton.Size = new System.Drawing.Size(75, 23);
66      this.okButton.TabIndex = 4;
67      this.okButton.Text = "&OK";
68      this.okButton.UseVisualStyleBackColor = true;
69      this.okButton.Click += new System.EventHandler(this.okButton_Click);
70      //
71      // cancelButton
72      //
73      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
74      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
75      this.cancelButton.Location = new System.Drawing.Point(194, 58);
76      this.cancelButton.Name = "cancelButton";
77      this.cancelButton.Size = new System.Drawing.Size(75, 23);
78      this.cancelButton.TabIndex = 5;
79      this.cancelButton.Text = "&Cancel";
80      this.cancelButton.UseVisualStyleBackColor = true;
81      //
82      // createBatchRunCheckBox
83      //
84      this.createBatchRunCheckBox.AutoSize = true;
85      this.createBatchRunCheckBox.Checked = true;
86      this.createBatchRunCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
87      this.createBatchRunCheckBox.Location = new System.Drawing.Point(113, 8);
88      this.createBatchRunCheckBox.Name = "createBatchRunCheckBox";
89      this.createBatchRunCheckBox.Size = new System.Drawing.Size(15, 14);
90      this.createBatchRunCheckBox.TabIndex = 1;
91      this.toolTip.SetToolTip(this.createBatchRunCheckBox, "Check to create a batch run for executing an algorithm multiple times.");
92      this.createBatchRunCheckBox.UseVisualStyleBackColor = true;
93      this.createBatchRunCheckBox.CheckedChanged += new System.EventHandler(this.createBatchRunCheckBox_CheckedChanged);
94      //
95      // createBatchRunLabel
96      //
97      this.createBatchRunLabel.AutoSize = true;
98      this.createBatchRunLabel.Location = new System.Drawing.Point(12, 9);
99      this.createBatchRunLabel.Name = "createBatchRunLabel";
100      this.createBatchRunLabel.Size = new System.Drawing.Size(95, 13);
101      this.createBatchRunLabel.TabIndex = 0;
102      this.createBatchRunLabel.Text = "&Create Batch Run:";
103      //
104      // repetitionsLabel
105      //
106      this.repetitionsLabel.AutoSize = true;
107      this.repetitionsLabel.Location = new System.Drawing.Point(12, 30);
108      this.repetitionsLabel.Name = "repetitionsLabel";
109      this.repetitionsLabel.Size = new System.Drawing.Size(63, 13);
110      this.repetitionsLabel.TabIndex = 2;
111      this.repetitionsLabel.Text = "&Repetitions:";
112      //
113      // repetitionsNumericUpDown
114      //
115      this.repetitionsNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
116                  | System.Windows.Forms.AnchorStyles.Right)));
117      this.repetitionsNumericUpDown.Location = new System.Drawing.Point(113, 28);
118      this.repetitionsNumericUpDown.Maximum = new decimal(new int[] {
119            1000000,
120            0,
121            0,
122            0});
123      this.repetitionsNumericUpDown.Minimum = new decimal(new int[] {
124            1,
125            0,
126            0,
127            0});
128      this.repetitionsNumericUpDown.Name = "repetitionsNumericUpDown";
129      this.repetitionsNumericUpDown.Size = new System.Drawing.Size(156, 20);
130      this.repetitionsNumericUpDown.TabIndex = 3;
131      this.repetitionsNumericUpDown.ThousandsSeparator = true;
132      this.toolTip.SetToolTip(this.repetitionsNumericUpDown, "Number of repetitions executed by the batch run.");
133      this.repetitionsNumericUpDown.Value = new decimal(new int[] {
134            10,
135            0,
136            0,
137            0});
138      this.repetitionsNumericUpDown.Validated += new System.EventHandler(this.repetitionsNumericUpDown_Validated);
139      //
140      // CreateExperimentDialog
141      //
142      this.AcceptButton = this.okButton;
143      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
144      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
145      this.CancelButton = this.cancelButton;
146      this.ClientSize = new System.Drawing.Size(281, 93);
147      this.Controls.Add(this.repetitionsNumericUpDown);
148      this.Controls.Add(this.repetitionsLabel);
149      this.Controls.Add(this.createBatchRunLabel);
150      this.Controls.Add(this.createBatchRunCheckBox);
151      this.Controls.Add(this.cancelButton);
152      this.Controls.Add(this.okButton);
153      this.MaximizeBox = false;
154      this.MinimizeBox = false;
155      this.Name = "CreateExperimentDialog";
156      this.ShowIcon = false;
157      this.ShowInTaskbar = false;
158      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
159      this.Text = "Create Experiment";
160      ((System.ComponentModel.ISupportInitialize)(this.repetitionsNumericUpDown)).EndInit();
161      this.ResumeLayout(false);
162      this.PerformLayout();
163
164    }
165
166    #endregion
167
168    private System.Windows.Forms.Button okButton;
169    private System.Windows.Forms.Button cancelButton;
170    private System.Windows.Forms.CheckBox createBatchRunCheckBox;
171    private System.Windows.Forms.Label createBatchRunLabel;
172    private System.Windows.Forms.Label repetitionsLabel;
173    private System.Windows.Forms.NumericUpDown repetitionsNumericUpDown;
174    private System.Windows.Forms.ToolTip toolTip;
175
176  }
177}
Note: See TracBrowser for help on using the repository browser.