Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data/ConstrainedItemListView.Designer.cs @ 91

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

Added HeuristicLab 3.0 sources from former SVN repository at revision 52

File size: 10.0 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
22namespace HeuristicLab.Data {
23  partial class ConstrainedItemListView {
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.itemsSplitContainer = new System.Windows.Forms.SplitContainer();
48      this.itemsGroupBox = new System.Windows.Forms.GroupBox();
49      this.removeItemButton = new System.Windows.Forms.Button();
50      this.addItemButton = new System.Windows.Forms.Button();
51      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
52      this.tabControl = new System.Windows.Forms.TabControl();
53      this.itemsTabPage = new System.Windows.Forms.TabPage();
54      this.constraintsTabPage = new System.Windows.Forms.TabPage();
55      this.constraintsConstrainedItemBaseView = new HeuristicLab.Core.ConstrainedItemBaseView();
56      this.itemsListView = new System.Windows.Forms.ListView();
57      this.itemsSplitContainer.Panel1.SuspendLayout();
58      this.itemsSplitContainer.Panel2.SuspendLayout();
59      this.itemsSplitContainer.SuspendLayout();
60      this.itemsGroupBox.SuspendLayout();
61      this.tabControl.SuspendLayout();
62      this.itemsTabPage.SuspendLayout();
63      this.constraintsTabPage.SuspendLayout();
64      this.SuspendLayout();
65      //
66      // itemsSplitContainer
67      //
68      this.itemsSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
69      this.itemsSplitContainer.Location = new System.Drawing.Point(3, 3);
70      this.itemsSplitContainer.Name = "itemsSplitContainer";
71      //
72      // itemsSplitContainer.Panel1
73      //
74      this.itemsSplitContainer.Panel1.Controls.Add(this.itemsGroupBox);
75      //
76      // itemsSplitContainer.Panel2
77      //
78      this.itemsSplitContainer.Panel2.Controls.Add(this.detailsGroupBox);
79      this.itemsSplitContainer.Size = new System.Drawing.Size(367, 378);
80      this.itemsSplitContainer.SplitterDistance = 162;
81      this.itemsSplitContainer.TabIndex = 2;
82      //
83      // itemsGroupBox
84      //
85      this.itemsGroupBox.Controls.Add(this.itemsListView);
86      this.itemsGroupBox.Controls.Add(this.removeItemButton);
87      this.itemsGroupBox.Controls.Add(this.addItemButton);
88      this.itemsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
89      this.itemsGroupBox.Location = new System.Drawing.Point(0, 0);
90      this.itemsGroupBox.Name = "itemsGroupBox";
91      this.itemsGroupBox.Size = new System.Drawing.Size(162, 378);
92      this.itemsGroupBox.TabIndex = 0;
93      this.itemsGroupBox.TabStop = false;
94      this.itemsGroupBox.Text = "Items";
95      //
96      // removeItemButton
97      //
98      this.removeItemButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
99      this.removeItemButton.Location = new System.Drawing.Point(84, 349);
100      this.removeItemButton.Name = "removeItemButton";
101      this.removeItemButton.Size = new System.Drawing.Size(75, 23);
102      this.removeItemButton.TabIndex = 4;
103      this.removeItemButton.Text = "Remove";
104      this.removeItemButton.UseVisualStyleBackColor = true;
105      this.removeItemButton.Click += new System.EventHandler(this.removeItemButton_Click);
106      //
107      // addItemButton
108      //
109      this.addItemButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
110      this.addItemButton.Location = new System.Drawing.Point(3, 349);
111      this.addItemButton.Name = "addItemButton";
112      this.addItemButton.Size = new System.Drawing.Size(75, 23);
113      this.addItemButton.TabIndex = 3;
114      this.addItemButton.Text = "Add";
115      this.addItemButton.UseVisualStyleBackColor = true;
116      this.addItemButton.Click += new System.EventHandler(this.addItemButton_Click);
117      //
118      // detailsGroupBox
119      //
120      this.detailsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
121      this.detailsGroupBox.Location = new System.Drawing.Point(0, 0);
122      this.detailsGroupBox.Name = "detailsGroupBox";
123      this.detailsGroupBox.Size = new System.Drawing.Size(201, 378);
124      this.detailsGroupBox.TabIndex = 0;
125      this.detailsGroupBox.TabStop = false;
126      this.detailsGroupBox.Text = "Details";
127      //
128      // tabControl
129      //
130      this.tabControl.Controls.Add(this.itemsTabPage);
131      this.tabControl.Controls.Add(this.constraintsTabPage);
132      this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
133      this.tabControl.Location = new System.Drawing.Point(0, 0);
134      this.tabControl.Name = "tabControl";
135      this.tabControl.SelectedIndex = 0;
136      this.tabControl.Size = new System.Drawing.Size(381, 410);
137      this.tabControl.TabIndex = 5;
138      //
139      // itemsTabPage
140      //
141      this.itemsTabPage.Controls.Add(this.itemsSplitContainer);
142      this.itemsTabPage.Location = new System.Drawing.Point(4, 22);
143      this.itemsTabPage.Name = "itemsTabPage";
144      this.itemsTabPage.Padding = new System.Windows.Forms.Padding(3);
145      this.itemsTabPage.Size = new System.Drawing.Size(373, 384);
146      this.itemsTabPage.TabIndex = 0;
147      this.itemsTabPage.Text = "Items";
148      this.itemsTabPage.UseVisualStyleBackColor = true;
149      //
150      // constraintsTabPage
151      //
152      this.constraintsTabPage.Controls.Add(this.constraintsConstrainedItemBaseView);
153      this.constraintsTabPage.Location = new System.Drawing.Point(4, 22);
154      this.constraintsTabPage.Name = "constraintsTabPage";
155      this.constraintsTabPage.Padding = new System.Windows.Forms.Padding(3);
156      this.constraintsTabPage.Size = new System.Drawing.Size(373, 384);
157      this.constraintsTabPage.TabIndex = 1;
158      this.constraintsTabPage.Text = "Constraints";
159      this.constraintsTabPage.UseVisualStyleBackColor = true;
160      //
161      // constraintsConstrainedItemBaseView
162      //
163      this.constraintsConstrainedItemBaseView.Caption = "Constrained Item";
164      this.constraintsConstrainedItemBaseView.ConstrainedItem = null;
165      this.constraintsConstrainedItemBaseView.Dock = System.Windows.Forms.DockStyle.Fill;
166      this.constraintsConstrainedItemBaseView.Location = new System.Drawing.Point(3, 3);
167      this.constraintsConstrainedItemBaseView.Name = "constraintsConstrainedItemBaseView";
168      this.constraintsConstrainedItemBaseView.Size = new System.Drawing.Size(367, 378);
169      this.constraintsConstrainedItemBaseView.TabIndex = 0;
170      //
171      // itemsListView
172      //
173      this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
174                  | System.Windows.Forms.AnchorStyles.Left)
175                  | System.Windows.Forms.AnchorStyles.Right)));
176      this.itemsListView.Location = new System.Drawing.Point(6, 19);
177      this.itemsListView.Name = "itemsListView";
178      this.itemsListView.Size = new System.Drawing.Size(153, 324);
179      this.itemsListView.TabIndex = 0;
180      this.itemsListView.UseCompatibleStateImageBehavior = false;
181      this.itemsListView.SelectedIndexChanged += new System.EventHandler(this.itemsListView_SelectedIndexChanged);
182      this.itemsListView.KeyUp += new System.Windows.Forms.KeyEventHandler(this.itemsListView_KeyUp);
183      //
184      // ConstrainedItemListView
185      //
186      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
187      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
188      this.Controls.Add(this.tabControl);
189      this.Name = "ConstrainedItemListView";
190      this.Size = new System.Drawing.Size(381, 410);
191      this.itemsSplitContainer.Panel1.ResumeLayout(false);
192      this.itemsSplitContainer.Panel2.ResumeLayout(false);
193      this.itemsSplitContainer.ResumeLayout(false);
194      this.itemsGroupBox.ResumeLayout(false);
195      this.tabControl.ResumeLayout(false);
196      this.itemsTabPage.ResumeLayout(false);
197      this.constraintsTabPage.ResumeLayout(false);
198      this.ResumeLayout(false);
199
200    }
201
202    #endregion
203
204    private System.Windows.Forms.SplitContainer itemsSplitContainer;
205    private System.Windows.Forms.Button addItemButton;
206    private System.Windows.Forms.Button removeItemButton;
207    private System.Windows.Forms.TabControl tabControl;
208    private System.Windows.Forms.TabPage itemsTabPage;
209    private System.Windows.Forms.TabPage constraintsTabPage;
210    private System.Windows.Forms.GroupBox itemsGroupBox;
211    private System.Windows.Forms.GroupBox detailsGroupBox;
212    private HeuristicLab.Core.ConstrainedItemBaseView constraintsConstrainedItemBaseView;
213    private System.Windows.Forms.ListView itemsListView;
214  }
215}
Note: See TracBrowser for help on using the repository browser.