Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Optimizer/3.3/ChangeNestingLevelDialog.Designer.cs

Last change on this file was 17181, checked in by swagner, 5 years ago

#2875: Merged r17180 from trunk to stable

File size: 6.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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.Optimizer {
23  partial class ChangeNestingLevelDialog {
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.okButton = new System.Windows.Forms.Button();
48      this.cancelButton = new System.Windows.Forms.Button();
49      this.nestingLevelNumericUpDownn = new System.Windows.Forms.NumericUpDown();
50      this.nestingLevelLabel = new System.Windows.Forms.Label();
51      this.infoLabel = new System.Windows.Forms.Label();
52      ((System.ComponentModel.ISupportInitialize)(this.nestingLevelNumericUpDownn)).BeginInit();
53      this.SuspendLayout();
54      //
55      // okButton
56      //
57      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
58      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
59      this.okButton.Location = new System.Drawing.Point(124, 92);
60      this.okButton.Name = "okButton";
61      this.okButton.Size = new System.Drawing.Size(75, 23);
62      this.okButton.TabIndex = 0;
63      this.okButton.Text = "&OK";
64      this.okButton.UseVisualStyleBackColor = true;
65      this.okButton.Click += new System.EventHandler(this.okButton_Click);
66      //
67      // cancelButton
68      //
69      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
70      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
71      this.cancelButton.Location = new System.Drawing.Point(205, 92);
72      this.cancelButton.Name = "cancelButton";
73      this.cancelButton.Size = new System.Drawing.Size(75, 23);
74      this.cancelButton.TabIndex = 1;
75      this.cancelButton.Text = "&Cancel";
76      this.cancelButton.UseVisualStyleBackColor = true;
77      //
78      // nestingLevelNumericUpDownn
79      //
80      this.nestingLevelNumericUpDownn.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
81            | System.Windows.Forms.AnchorStyles.Right)));
82      this.nestingLevelNumericUpDownn.Location = new System.Drawing.Point(147, 12);
83      this.nestingLevelNumericUpDownn.Name = "nestingLevelNumericUpDownn";
84      this.nestingLevelNumericUpDownn.Size = new System.Drawing.Size(133, 20);
85      this.nestingLevelNumericUpDownn.TabIndex = 2;
86      //
87      // nestingLevelLabel
88      //
89      this.nestingLevelLabel.AutoSize = true;
90      this.nestingLevelLabel.Location = new System.Drawing.Point(12, 14);
91      this.nestingLevelLabel.Name = "nestingLevelLabel";
92      this.nestingLevelLabel.Size = new System.Drawing.Size(116, 13);
93      this.nestingLevelLabel.TabIndex = 3;
94      this.nestingLevelLabel.Text = "Maximum nesting level:";
95      //
96      // infoLabel
97      //
98      this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
99            | System.Windows.Forms.AnchorStyles.Left)
100            | System.Windows.Forms.AnchorStyles.Right)));
101      this.infoLabel.Location = new System.Drawing.Point(12, 46);
102      this.infoLabel.Name = "infoLabel";
103      this.infoLabel.Size = new System.Drawing.Size(268, 43);
104      this.infoLabel.TabIndex = 4;
105      this.infoLabel.Text = "A high nesting level of controls can cause problems. A maximum level of 35 is rec" +
106    "ommended.";
107      //
108      // ChangeNestingLevelDialog
109      //
110      this.AcceptButton = this.okButton;
111      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
112      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
113      this.CancelButton = this.cancelButton;
114      this.ClientSize = new System.Drawing.Size(292, 127);
115      this.Controls.Add(this.infoLabel);
116      this.Controls.Add(this.nestingLevelLabel);
117      this.Controls.Add(this.nestingLevelNumericUpDownn);
118      this.Controls.Add(this.cancelButton);
119      this.Controls.Add(this.okButton);
120      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
121      this.MaximizeBox = false;
122      this.MinimizeBox = false;
123      this.Name = "ChangeNestingLevelDialog";
124      this.ShowIcon = false;
125      this.ShowInTaskbar = false;
126      this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
127      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
128      this.Text = "Change Nesting Level";
129      this.TopMost = true;
130      this.Load += new System.EventHandler(this.ChangeNestingLevelDialog_Load);
131      ((System.ComponentModel.ISupportInitialize)(this.nestingLevelNumericUpDownn)).EndInit();
132      this.ResumeLayout(false);
133      this.PerformLayout();
134
135    }
136
137    #endregion
138
139    private System.Windows.Forms.Button okButton;
140    private System.Windows.Forms.Button cancelButton;
141    private System.Windows.Forms.NumericUpDown nestingLevelNumericUpDownn;
142    private System.Windows.Forms.Label nestingLevelLabel;
143    private System.Windows.Forms.Label infoLabel;
144  }
145}
Note: See TracBrowser for help on using the repository browser.