Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Breadcrumbs/HeuristicLab.MainForm.WindowsForms/3.3/Dialogs/DefineArithmeticProgressionDialog.Designer.cs @ 11594

Last change on this file since 11594 was 11594, checked in by jkarder, 9 years ago

#2116: merged r10041-r11593 from trunk into branch

File size: 8.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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.MainForm.WindowsForms {
23  partial class DefineArithmeticProgressionDialog {
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.stepSizeTextBox = new System.Windows.Forms.TextBox();
49      this.maximumTextBox = new System.Windows.Forms.TextBox();
50      this.minimumTextBox = new System.Windows.Forms.TextBox();
51      this.stepSizeLabel = new System.Windows.Forms.Label();
52      this.maximumLabel = new System.Windows.Forms.Label();
53      this.minimumLabel = new System.Windows.Forms.Label();
54      this.cancelButton = new System.Windows.Forms.Button();
55      this.okButton = new System.Windows.Forms.Button();
56      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
57      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
58      this.SuspendLayout();
59      //
60      // stepSizeTextBox
61      //
62      this.stepSizeTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
63            | System.Windows.Forms.AnchorStyles.Right)));
64      this.stepSizeTextBox.Location = new System.Drawing.Point(75, 64);
65      this.stepSizeTextBox.Name = "stepSizeTextBox";
66      this.stepSizeTextBox.Size = new System.Drawing.Size(184, 20);
67      this.stepSizeTextBox.TabIndex = 11;
68      this.stepSizeTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.textBox_Validating);
69      //
70      // maximumTextBox
71      //
72      this.maximumTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
73            | System.Windows.Forms.AnchorStyles.Right)));
74      this.maximumTextBox.Location = new System.Drawing.Point(75, 38);
75      this.maximumTextBox.Name = "maximumTextBox";
76      this.maximumTextBox.Size = new System.Drawing.Size(184, 20);
77      this.maximumTextBox.TabIndex = 9;
78      this.maximumTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.textBox_Validating);
79      //
80      // minimumTextBox
81      //
82      this.minimumTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
83            | System.Windows.Forms.AnchorStyles.Right)));
84      this.minimumTextBox.Location = new System.Drawing.Point(75, 12);
85      this.minimumTextBox.Name = "minimumTextBox";
86      this.minimumTextBox.Size = new System.Drawing.Size(184, 20);
87      this.minimumTextBox.TabIndex = 7;
88      this.minimumTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.textBox_Validating);
89      //
90      // stepSizeLabel
91      //
92      this.stepSizeLabel.AutoSize = true;
93      this.stepSizeLabel.Location = new System.Drawing.Point(15, 67);
94      this.stepSizeLabel.Name = "stepSizeLabel";
95      this.stepSizeLabel.Size = new System.Drawing.Size(53, 13);
96      this.stepSizeLabel.TabIndex = 10;
97      this.stepSizeLabel.Text = "Step size:";
98      //
99      // maximumLabel
100      //
101      this.maximumLabel.AutoSize = true;
102      this.maximumLabel.Location = new System.Drawing.Point(15, 41);
103      this.maximumLabel.Name = "maximumLabel";
104      this.maximumLabel.Size = new System.Drawing.Size(54, 13);
105      this.maximumLabel.TabIndex = 8;
106      this.maximumLabel.Text = "Maximum:";
107      //
108      // minimumLabel
109      //
110      this.minimumLabel.AutoSize = true;
111      this.minimumLabel.Location = new System.Drawing.Point(15, 15);
112      this.minimumLabel.Name = "minimumLabel";
113      this.minimumLabel.Size = new System.Drawing.Size(51, 13);
114      this.minimumLabel.TabIndex = 6;
115      this.minimumLabel.Text = "Minimum:";
116      //
117      // cancelButton
118      //
119      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
120      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
121      this.cancelButton.Location = new System.Drawing.Point(184, 96);
122      this.cancelButton.Name = "cancelButton";
123      this.cancelButton.Size = new System.Drawing.Size(75, 23);
124      this.cancelButton.TabIndex = 12;
125      this.cancelButton.Text = "&Cancel";
126      this.cancelButton.UseVisualStyleBackColor = true;
127      //
128      // okButton
129      //
130      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
131      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
132      this.okButton.Location = new System.Drawing.Point(103, 96);
133      this.okButton.Name = "okButton";
134      this.okButton.Size = new System.Drawing.Size(75, 23);
135      this.okButton.TabIndex = 12;
136      this.okButton.Text = "&OK";
137      this.okButton.UseVisualStyleBackColor = true;
138      //
139      // errorProvider
140      //
141      this.errorProvider.ContainerControl = this;
142      //
143      // DefineArithmeticProgressionDialog
144      //
145      this.AcceptButton = this.okButton;
146      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
147      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
148      this.CancelButton = this.cancelButton;
149      this.ClientSize = new System.Drawing.Size(271, 131);
150      this.Controls.Add(this.okButton);
151      this.Controls.Add(this.cancelButton);
152      this.Controls.Add(this.stepSizeTextBox);
153      this.Controls.Add(this.maximumTextBox);
154      this.Controls.Add(this.minimumTextBox);
155      this.Controls.Add(this.stepSizeLabel);
156      this.Controls.Add(this.maximumLabel);
157      this.Controls.Add(this.minimumLabel);
158      this.MaximizeBox = false;
159      this.MinimizeBox = false;
160      this.Name = "DefineArithmeticProgressionDialog";
161      this.ShowIcon = false;
162      this.ShowInTaskbar = false;
163      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
164      this.Text = "Generate Values";
165      this.TopMost = true;
166      this.Load += new System.EventHandler(this.DefineArithmeticProgressionDialog_Load);
167      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
168      this.ResumeLayout(false);
169      this.PerformLayout();
170
171    }
172
173    #endregion
174
175    private System.Windows.Forms.TextBox stepSizeTextBox;
176    private System.Windows.Forms.TextBox maximumTextBox;
177    private System.Windows.Forms.TextBox minimumTextBox;
178    private System.Windows.Forms.Label stepSizeLabel;
179    private System.Windows.Forms.Label maximumLabel;
180    private System.Windows.Forms.Label minimumLabel;
181    private System.Windows.Forms.Button cancelButton;
182    private System.Windows.Forms.Button okButton;
183    private System.Windows.Forms.ErrorProvider errorProvider;
184  }
185}
Note: See TracBrowser for help on using the repository browser.