Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core/VariablesScopeView.Designer.cs @ 112

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

Added HeuristicLab 3.0 sources from former SVN repository at revision 52

File size: 7.8 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 VariablesScopeView {
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 Windows Form 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.splitContainer1 = new System.Windows.Forms.SplitContainer();
55      this.variablesGroupBox = new System.Windows.Forms.GroupBox();
56      this.variablesListView = new System.Windows.Forms.ListView();
57      this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
58      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
59      this.addButton = new System.Windows.Forms.Button();
60      this.removeButton = new System.Windows.Forms.Button();
61      this.splitContainer1.Panel1.SuspendLayout();
62      this.splitContainer1.Panel2.SuspendLayout();
63      this.splitContainer1.SuspendLayout();
64      this.variablesGroupBox.SuspendLayout();
65      this.SuspendLayout();
66      //
67      // splitContainer1
68      //
69      this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
70                  | System.Windows.Forms.AnchorStyles.Left)
71                  | System.Windows.Forms.AnchorStyles.Right)));
72      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
73      this.splitContainer1.Name = "splitContainer1";
74      //
75      // splitContainer1.Panel1
76      //
77      this.splitContainer1.Panel1.Controls.Add(this.variablesGroupBox);
78      //
79      // splitContainer1.Panel2
80      //
81      this.splitContainer1.Panel2.Controls.Add(this.detailsGroupBox);
82      this.splitContainer1.Size = new System.Drawing.Size(276, 155);
83      this.splitContainer1.SplitterDistance = 135;
84      this.splitContainer1.TabIndex = 0;
85      //
86      // variablesGroupBox
87      //
88      this.variablesGroupBox.Controls.Add(this.variablesListView);
89      this.variablesGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
90      this.variablesGroupBox.Location = new System.Drawing.Point(0, 0);
91      this.variablesGroupBox.Name = "variablesGroupBox";
92      this.variablesGroupBox.Size = new System.Drawing.Size(135, 155);
93      this.variablesGroupBox.TabIndex = 0;
94      this.variablesGroupBox.TabStop = false;
95      this.variablesGroupBox.Text = "&Variables";
96      //
97      // variablesListView
98      //
99      this.variablesListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
100            this.columnHeader1});
101      this.variablesListView.Dock = System.Windows.Forms.DockStyle.Fill;
102      this.variablesListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
103      this.variablesListView.HideSelection = false;
104      this.variablesListView.Location = new System.Drawing.Point(3, 16);
105      this.variablesListView.Name = "variablesListView";
106      this.variablesListView.Size = new System.Drawing.Size(129, 136);
107      this.variablesListView.Sorting = System.Windows.Forms.SortOrder.Ascending;
108      this.variablesListView.TabIndex = 0;
109      this.variablesListView.UseCompatibleStateImageBehavior = false;
110      this.variablesListView.View = System.Windows.Forms.View.Details;
111      this.variablesListView.SelectedIndexChanged += new System.EventHandler(this.variablesListView_SelectedIndexChanged);
112      this.variablesListView.SizeChanged += new System.EventHandler(this.variablesListView_SizeChanged);
113      this.variablesListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.variablesListView_KeyDown);
114      //
115      // detailsGroupBox
116      //
117      this.detailsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
118      this.detailsGroupBox.Location = new System.Drawing.Point(0, 0);
119      this.detailsGroupBox.Name = "detailsGroupBox";
120      this.detailsGroupBox.Size = new System.Drawing.Size(137, 155);
121      this.detailsGroupBox.TabIndex = 0;
122      this.detailsGroupBox.TabStop = false;
123      this.detailsGroupBox.Text = "&Details";
124      //
125      // addButton
126      //
127      this.addButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
128      this.addButton.Location = new System.Drawing.Point(0, 161);
129      this.addButton.Name = "addButton";
130      this.addButton.Size = new System.Drawing.Size(75, 23);
131      this.addButton.TabIndex = 1;
132      this.addButton.Text = "&Add...";
133      this.addButton.UseVisualStyleBackColor = true;
134      this.addButton.Click += new System.EventHandler(this.addButton_Click);
135      //
136      // removeButton
137      //
138      this.removeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
139      this.removeButton.Enabled = false;
140      this.removeButton.Location = new System.Drawing.Point(81, 161);
141      this.removeButton.Name = "removeButton";
142      this.removeButton.Size = new System.Drawing.Size(75, 23);
143      this.removeButton.TabIndex = 2;
144      this.removeButton.Text = "&Remove";
145      this.removeButton.UseVisualStyleBackColor = true;
146      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
147      //
148      // VariablesScopeView
149      //
150      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
151      this.Controls.Add(this.removeButton);
152      this.Controls.Add(this.addButton);
153      this.Controls.Add(this.splitContainer1);
154      this.Name = "VariablesScopeView";
155      this.Size = new System.Drawing.Size(276, 184);
156      this.splitContainer1.Panel1.ResumeLayout(false);
157      this.splitContainer1.Panel2.ResumeLayout(false);
158      this.splitContainer1.ResumeLayout(false);
159      this.variablesGroupBox.ResumeLayout(false);
160      this.ResumeLayout(false);
161
162    }
163
164    #endregion
165
166    private System.Windows.Forms.SplitContainer splitContainer1;
167    private System.Windows.Forms.GroupBox variablesGroupBox;
168    private System.Windows.Forms.ListView variablesListView;
169    private System.Windows.Forms.ColumnHeader columnHeader1;
170    private System.Windows.Forms.GroupBox detailsGroupBox;
171    private System.Windows.Forms.Button addButton;
172    private System.Windows.Forms.Button removeButton;
173  }
174}
Note: See TracBrowser for help on using the repository browser.