Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core/OperatorBaseVariablesView.Designer.cs @ 2

Last change on this file since 2 was 2, checked in by swagner, 16 years ago

Added HeuristicLab 3.0 sources from former SVN repository at revision 52

File size: 8.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2008 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
22using System;
23using System.Windows.Forms;
24
25namespace HeuristicLab.Core {
26  partial class OperatorBaseVariablesView {
27    /// <summary>
28    /// Required designer variable.
29    /// </summary>
30    private System.ComponentModel.IContainer components = null;
31
32    /// <summary>
33    /// Clean up any resources being used.
34    /// </summary>
35    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
36    protected override void Dispose(bool disposing) {
37      if (chooseItemDialog != null) chooseItemDialog.Dispose();
38      foreach (ListViewItem item in variablesListView.Items) {
39        ((IVariable)item.Tag).NameChanged -= new EventHandler(Variable_NameChanged);
40      }
41      if (disposing && (components != null)) {
42        components.Dispose();
43      }
44      base.Dispose(disposing);
45    }
46
47    #region Component Designer generated code
48
49    /// <summary>
50    /// Required method for Designer support - do not modify
51    /// the contents of this method with the code editor.
52    /// </summary>
53    private void InitializeComponent() {
54      this.removeVariableButton = new System.Windows.Forms.Button();
55      this.addVariableButton = new System.Windows.Forms.Button();
56      this.splitContainer = new System.Windows.Forms.SplitContainer();
57      this.variablesGroupBox = new System.Windows.Forms.GroupBox();
58      this.variablesListView = new System.Windows.Forms.ListView();
59      this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
60      this.variableDetailsGroupBox = new System.Windows.Forms.GroupBox();
61      this.splitContainer.Panel1.SuspendLayout();
62      this.splitContainer.Panel2.SuspendLayout();
63      this.splitContainer.SuspendLayout();
64      this.variablesGroupBox.SuspendLayout();
65      this.SuspendLayout();
66      //
67      // removeVariableButton
68      //
69      this.removeVariableButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
70      this.removeVariableButton.Enabled = false;
71      this.removeVariableButton.Location = new System.Drawing.Point(81, 310);
72      this.removeVariableButton.Name = "removeVariableButton";
73      this.removeVariableButton.Size = new System.Drawing.Size(75, 23);
74      this.removeVariableButton.TabIndex = 2;
75      this.removeVariableButton.Text = "&Remove";
76      this.removeVariableButton.UseVisualStyleBackColor = true;
77      this.removeVariableButton.Click += new System.EventHandler(this.removeVariableButton_Click);
78      //
79      // addVariableButton
80      //
81      this.addVariableButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
82      this.addVariableButton.Location = new System.Drawing.Point(0, 310);
83      this.addVariableButton.Name = "addVariableButton";
84      this.addVariableButton.Size = new System.Drawing.Size(75, 23);
85      this.addVariableButton.TabIndex = 1;
86      this.addVariableButton.Text = "&Add...";
87      this.addVariableButton.UseVisualStyleBackColor = true;
88      this.addVariableButton.Click += new System.EventHandler(this.addVariableButton_Click);
89      //
90      // splitContainer
91      //
92      this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
93                  | System.Windows.Forms.AnchorStyles.Left)
94                  | System.Windows.Forms.AnchorStyles.Right)));
95      this.splitContainer.Location = new System.Drawing.Point(0, 0);
96      this.splitContainer.Name = "splitContainer";
97      //
98      // splitContainer.Panel1
99      //
100      this.splitContainer.Panel1.Controls.Add(this.variablesGroupBox);
101      //
102      // splitContainer.Panel2
103      //
104      this.splitContainer.Panel2.Controls.Add(this.variableDetailsGroupBox);
105      this.splitContainer.Size = new System.Drawing.Size(423, 304);
106      this.splitContainer.SplitterDistance = 212;
107      this.splitContainer.TabIndex = 0;
108      //
109      // variablesGroupBox
110      //
111      this.variablesGroupBox.Controls.Add(this.variablesListView);
112      this.variablesGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
113      this.variablesGroupBox.Location = new System.Drawing.Point(0, 0);
114      this.variablesGroupBox.Name = "variablesGroupBox";
115      this.variablesGroupBox.Size = new System.Drawing.Size(212, 304);
116      this.variablesGroupBox.TabIndex = 0;
117      this.variablesGroupBox.TabStop = false;
118      this.variablesGroupBox.Text = "&Variables";
119      //
120      // variablesListView
121      //
122      this.variablesListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
123            this.columnHeader2});
124      this.variablesListView.Dock = System.Windows.Forms.DockStyle.Fill;
125      this.variablesListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
126      this.variablesListView.HideSelection = false;
127      this.variablesListView.Location = new System.Drawing.Point(3, 16);
128      this.variablesListView.Name = "variablesListView";
129      this.variablesListView.Size = new System.Drawing.Size(206, 285);
130      this.variablesListView.Sorting = System.Windows.Forms.SortOrder.Ascending;
131      this.variablesListView.TabIndex = 0;
132      this.variablesListView.UseCompatibleStateImageBehavior = false;
133      this.variablesListView.View = System.Windows.Forms.View.Details;
134      this.variablesListView.SelectedIndexChanged += new System.EventHandler(this.variablesListView_SelectedIndexChanged);
135      this.variablesListView.SizeChanged += new System.EventHandler(this.variablesListView_SizeChanged);
136      this.variablesListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.variablesListView_KeyDown);
137      //
138      // variableDetailsGroupBox
139      //
140      this.variableDetailsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
141      this.variableDetailsGroupBox.Location = new System.Drawing.Point(0, 0);
142      this.variableDetailsGroupBox.Name = "variableDetailsGroupBox";
143      this.variableDetailsGroupBox.Size = new System.Drawing.Size(207, 304);
144      this.variableDetailsGroupBox.TabIndex = 0;
145      this.variableDetailsGroupBox.TabStop = false;
146      this.variableDetailsGroupBox.Text = "&Details";
147      //
148      // OperatorBaseVariablesView
149      //
150      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
151      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
152      this.Controls.Add(this.splitContainer);
153      this.Controls.Add(this.removeVariableButton);
154      this.Controls.Add(this.addVariableButton);
155      this.Name = "OperatorBaseVariablesView";
156      this.Size = new System.Drawing.Size(423, 333);
157      this.splitContainer.Panel1.ResumeLayout(false);
158      this.splitContainer.Panel2.ResumeLayout(false);
159      this.splitContainer.ResumeLayout(false);
160      this.variablesGroupBox.ResumeLayout(false);
161      this.ResumeLayout(false);
162
163    }
164
165    #endregion
166
167    private ColumnHeader columnHeader2;
168    protected SplitContainer splitContainer;
169    protected GroupBox variablesGroupBox;
170    protected ListView variablesListView;
171    protected GroupBox variableDetailsGroupBox;
172    protected Button removeVariableButton;
173    protected Button addVariableButton;
174
175
176  }
177}
Note: See TracBrowser for help on using the repository browser.