Free cookie consent management tool by TermsFeed Policy Generator

source: branches/QAPGenerators/HeuristicLab.Problems.Instances.QAPGenerator.Views/3.3/QAPInstanceGeneratorDescriptorView.Designer.cs @ 14704

Last change on this file since 14704 was 14704, checked in by abeham, 7 years ago

#2738: added branch

File size: 5.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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.Problems.Instances.QAPGenerator.Views {
23  partial class QAPInstanceGeneratorDescriptorView {
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 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      this.sizeLabel = new System.Windows.Forms.Label();
49      this.sizeNumericUpDown = new System.Windows.Forms.NumericUpDown();
50      this.seedTextBox = new System.Windows.Forms.TextBox();
51      this.seedLabel = new System.Windows.Forms.Label();
52      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
53      ((System.ComponentModel.ISupportInitialize)(this.sizeNumericUpDown)).BeginInit();
54      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
55      this.SuspendLayout();
56      //
57      // sizeLabel
58      //
59      this.sizeLabel.AutoSize = true;
60      this.sizeLabel.Location = new System.Drawing.Point(-3, 2);
61      this.sizeLabel.Name = "sizeLabel";
62      this.sizeLabel.Size = new System.Drawing.Size(30, 13);
63      this.sizeLabel.TabIndex = 0;
64      this.sizeLabel.Text = "Size:";
65      //
66      // sizeNumericUpDown
67      //
68      this.sizeNumericUpDown.Location = new System.Drawing.Point(33, 0);
69      this.sizeNumericUpDown.Maximum = new decimal(new int[] {
70            1000,
71            0,
72            0,
73            0});
74      this.sizeNumericUpDown.Name = "sizeNumericUpDown";
75      this.sizeNumericUpDown.Size = new System.Drawing.Size(64, 20);
76      this.sizeNumericUpDown.TabIndex = 1;
77      this.sizeNumericUpDown.ValueChanged += new System.EventHandler(this.sizeNumericUpDown_ValueChanged);
78      //
79      // seedTextBox
80      //
81      this.seedTextBox.Location = new System.Drawing.Point(144, 0);
82      this.seedTextBox.Name = "seedTextBox";
83      this.seedTextBox.Size = new System.Drawing.Size(80, 20);
84      this.seedTextBox.TabIndex = 2;
85      this.seedTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.seedTextBox_Validating);
86      this.seedTextBox.Validated += new System.EventHandler(this.seedTextBox_Validated);
87      //
88      // seedLabel
89      //
90      this.seedLabel.AutoSize = true;
91      this.seedLabel.Location = new System.Drawing.Point(103, 2);
92      this.seedLabel.Name = "seedLabel";
93      this.seedLabel.Size = new System.Drawing.Size(35, 13);
94      this.seedLabel.TabIndex = 0;
95      this.seedLabel.Text = "Seed:";
96      //
97      // errorProvider
98      //
99      this.errorProvider.ContainerControl = this;
100      //
101      // QAPInstanceGeneratorDescriptorView
102      //
103      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
104      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
105      this.Controls.Add(this.seedTextBox);
106      this.Controls.Add(this.sizeNumericUpDown);
107      this.Controls.Add(this.seedLabel);
108      this.Controls.Add(this.sizeLabel);
109      this.Name = "QAPInstanceGeneratorDescriptorView";
110      this.Size = new System.Drawing.Size(229, 19);
111      ((System.ComponentModel.ISupportInitialize)(this.sizeNumericUpDown)).EndInit();
112      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
113      this.ResumeLayout(false);
114      this.PerformLayout();
115
116    }
117
118    #endregion
119
120    protected System.Windows.Forms.Label sizeLabel;
121    protected System.Windows.Forms.NumericUpDown sizeNumericUpDown;
122    protected System.Windows.Forms.TextBox seedTextBox;
123    protected System.Windows.Forms.Label seedLabel;
124    protected System.Windows.Forms.ErrorProvider errorProvider;
125
126  }
127}
Note: See TracBrowser for help on using the repository browser.