Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Breadcrumbs/HeuristicLab.Operators.Views/3.3/OperatorView.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: 4.6 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.Operators.Views {
23  partial class OperatorView {
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      this.breakpointLabel = new System.Windows.Forms.Label();
48      this.breakpointCheckBox = new System.Windows.Forms.CheckBox();
49      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
50      this.SuspendLayout();
51      //
52      // parameterCollectionView
53      //
54      this.parameterCollectionView.Location = new System.Drawing.Point(0, 46);
55      this.parameterCollectionView.Size = new System.Drawing.Size(490, 307);
56      this.parameterCollectionView.TabIndex = 5;
57      //
58      // nameTextBox
59      //
60      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
61      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
62      this.nameTextBox.Location = new System.Drawing.Point(70, 0);
63      this.nameTextBox.Size = new System.Drawing.Size(395, 20);
64      //
65      // infoLabel
66      //
67      this.infoLabel.Location = new System.Drawing.Point(471, 3);
68      //
69      // breakpointLabel
70      //
71      this.breakpointLabel.AutoSize = true;
72      this.breakpointLabel.Location = new System.Drawing.Point(3, 26);
73      this.breakpointLabel.Name = "breakpointLabel";
74      this.breakpointLabel.Size = new System.Drawing.Size(61, 13);
75      this.breakpointLabel.TabIndex = 3;
76      this.breakpointLabel.Text = "&Breakpoint:";
77      //
78      // breakpointCheckBox
79      //
80      this.breakpointCheckBox.AutoSize = true;
81      this.breakpointCheckBox.Location = new System.Drawing.Point(70, 26);
82      this.breakpointCheckBox.Name = "breakpointCheckBox";
83      this.breakpointCheckBox.Size = new System.Drawing.Size(15, 14);
84      this.breakpointCheckBox.TabIndex = 4;
85      this.toolTip.SetToolTip(this.breakpointCheckBox, "Check if an engine should stop execution each time after this operator has been p" +
86              "rocessed.");
87      this.breakpointCheckBox.UseVisualStyleBackColor = true;
88      this.breakpointCheckBox.CheckedChanged += new System.EventHandler(this.breakpointCheckBox_CheckedChanged);
89      //
90      // OperatorView
91      //
92      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
93      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
94      this.Controls.Add(this.breakpointLabel);
95      this.Controls.Add(this.breakpointCheckBox);
96      this.Name = "OperatorView";
97      this.Controls.SetChildIndex(this.breakpointCheckBox, 0);
98      this.Controls.SetChildIndex(this.breakpointLabel, 0);
99      this.Controls.SetChildIndex(this.infoLabel, 0);
100      this.Controls.SetChildIndex(this.nameTextBox, 0);
101      this.Controls.SetChildIndex(this.nameLabel, 0);
102      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
103      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
104      this.ResumeLayout(false);
105      this.PerformLayout();
106
107    }
108
109    #endregion
110
111    protected System.Windows.Forms.Label breakpointLabel;
112    protected System.Windows.Forms.CheckBox breakpointCheckBox;
113
114  }
115}
Note: See TracBrowser for help on using the repository browser.