Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/ItemCollectionView.Designer.cs @ 3837

Last change on this file since 3837 was 3407, checked in by swagner, 14 years ago

Restricted types of child operators in MultiOperator (#979)

File size: 11.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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;
24using System.ComponentModel;
25
26namespace HeuristicLab.Core.Views {
27  partial class ItemCollectionView<T> {
28    /// <summary>
29    /// Required designer variable.
30    /// </summary>
31    private System.ComponentModel.IContainer components = null;
32
33    /// <summary>
34    /// Clean up any resources being used.
35    /// </summary>
36    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
37    protected override void Dispose(bool disposing) {
38      if (disposing) {
39        if (typeSelectorDialog != null) typeSelectorDialog.Dispose();
40        foreach (ListViewItem item in itemsListView.Items) {
41          ((T)item.Tag).ItemImageChanged -= new EventHandler(Item_ItemImageChanged);
42          ((T)item.Tag).ToStringChanged -= new EventHandler(Item_ToStringChanged);
43        }
44        if (components != null) components.Dispose();
45      }
46      base.Dispose(disposing);
47    }
48
49    #region Windows Form Designer generated code
50
51    /// <summary>
52    /// Required method for Designer support - do not modify
53    /// the contents of this method with the code editor.
54    /// </summary>
55    private void InitializeComponent() {
56      this.components = new System.ComponentModel.Container();
57      this.splitContainer = new System.Windows.Forms.SplitContainer();
58      this.itemsListView = new System.Windows.Forms.ListView();
59      this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
60      this.imageList = new System.Windows.Forms.ImageList(this.components);
61      this.sortDescendingButton = new System.Windows.Forms.Button();
62      this.sortAscendingButton = new System.Windows.Forms.Button();
63      this.removeButton = new System.Windows.Forms.Button();
64      this.addButton = new System.Windows.Forms.Button();
65      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
66      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
67      this.itemsGroupBox = new System.Windows.Forms.GroupBox();
68      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
69      this.splitContainer.Panel1.SuspendLayout();
70      this.splitContainer.Panel2.SuspendLayout();
71      this.splitContainer.SuspendLayout();
72      this.detailsGroupBox.SuspendLayout();
73      this.itemsGroupBox.SuspendLayout();
74      this.SuspendLayout();
75      //
76      // splitContainer
77      //
78      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
79      this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
80      this.splitContainer.Location = new System.Drawing.Point(3, 16);
81      this.splitContainer.Name = "splitContainer";
82      //
83      // splitContainer.Panel1
84      //
85      this.splitContainer.Panel1.Controls.Add(this.itemsListView);
86      this.splitContainer.Panel1.Controls.Add(this.sortDescendingButton);
87      this.splitContainer.Panel1.Controls.Add(this.sortAscendingButton);
88      this.splitContainer.Panel1.Controls.Add(this.removeButton);
89      this.splitContainer.Panel1.Controls.Add(this.addButton);
90      this.splitContainer.Panel1MinSize = 100;
91      //
92      // splitContainer.Panel2
93      //
94      this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
95      this.splitContainer.Size = new System.Drawing.Size(526, 364);
96      this.splitContainer.SplitterDistance = 250;
97      this.splitContainer.TabIndex = 0;
98      //
99      // itemsListView
100      //
101      this.itemsListView.AllowDrop = true;
102      this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
103                  | System.Windows.Forms.AnchorStyles.Left)
104                  | System.Windows.Forms.AnchorStyles.Right)));
105      this.itemsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
106            this.columnHeader1});
107      this.itemsListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
108      this.itemsListView.HideSelection = false;
109      this.itemsListView.Location = new System.Drawing.Point(3, 33);
110      this.itemsListView.Name = "itemsListView";
111      this.itemsListView.ShowItemToolTips = true;
112      this.itemsListView.Size = new System.Drawing.Size(244, 327);
113      this.itemsListView.SmallImageList = this.imageList;
114      this.itemsListView.TabIndex = 4;
115      this.itemsListView.UseCompatibleStateImageBehavior = false;
116      this.itemsListView.View = System.Windows.Forms.View.Details;
117      this.itemsListView.SelectedIndexChanged += new System.EventHandler(this.itemsListView_SelectedIndexChanged);
118      this.itemsListView.DoubleClick += new System.EventHandler(this.itemsListView_DoubleClick);
119      this.itemsListView.DragDrop += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragDrop);
120      this.itemsListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
121      this.itemsListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.itemsListView_KeyDown);
122      this.itemsListView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.itemsListView_ItemDrag);
123      this.itemsListView.DragOver += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
124      //
125      // imageList
126      //
127      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
128      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
129      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
130      //
131      // sortDescendingButton
132      //
133      this.sortDescendingButton.Enabled = false;
134      this.sortDescendingButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.SortUp;
135      this.sortDescendingButton.Location = new System.Drawing.Point(33, 3);
136      this.sortDescendingButton.Name = "sortDescendingButton";
137      this.sortDescendingButton.Size = new System.Drawing.Size(24, 24);
138      this.sortDescendingButton.TabIndex = 1;
139      this.toolTip.SetToolTip(this.sortDescendingButton, "Sort Descending");
140      this.sortDescendingButton.UseVisualStyleBackColor = true;
141      this.sortDescendingButton.Click += new System.EventHandler(this.sortDescendingButton_Click);
142      //
143      // sortAscendingButton
144      //
145      this.sortAscendingButton.Enabled = false;
146      this.sortAscendingButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Sort;
147      this.sortAscendingButton.Location = new System.Drawing.Point(63, 3);
148      this.sortAscendingButton.Name = "sortAscendingButton";
149      this.sortAscendingButton.Size = new System.Drawing.Size(24, 24);
150      this.sortAscendingButton.TabIndex = 2;
151      this.toolTip.SetToolTip(this.sortAscendingButton, "Sort Ascending");
152      this.sortAscendingButton.UseVisualStyleBackColor = true;
153      this.sortAscendingButton.Click += new System.EventHandler(this.sortAscendingButton_Click);
154      //
155      // removeButton
156      //
157      this.removeButton.Enabled = false;
158      this.removeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
159      this.removeButton.Location = new System.Drawing.Point(93, 3);
160      this.removeButton.Name = "removeButton";
161      this.removeButton.Size = new System.Drawing.Size(24, 24);
162      this.removeButton.TabIndex = 3;
163      this.toolTip.SetToolTip(this.removeButton, "Remove");
164      this.removeButton.UseVisualStyleBackColor = true;
165      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
166      //
167      // addButton
168      //
169      this.addButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Add;
170      this.addButton.Location = new System.Drawing.Point(3, 3);
171      this.addButton.Name = "addButton";
172      this.addButton.Size = new System.Drawing.Size(24, 24);
173      this.addButton.TabIndex = 0;
174      this.toolTip.SetToolTip(this.addButton, "Add");
175      this.addButton.UseVisualStyleBackColor = true;
176      this.addButton.Click += new System.EventHandler(this.addButton_Click);
177      //
178      // detailsGroupBox
179      //
180      this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
181                  | System.Windows.Forms.AnchorStyles.Left)
182                  | System.Windows.Forms.AnchorStyles.Right)));
183      this.detailsGroupBox.Controls.Add(this.viewHost);
184      this.detailsGroupBox.Location = new System.Drawing.Point(3, 27);
185      this.detailsGroupBox.Name = "detailsGroupBox";
186      this.detailsGroupBox.Size = new System.Drawing.Size(266, 335);
187      this.detailsGroupBox.TabIndex = 0;
188      this.detailsGroupBox.TabStop = false;
189      this.detailsGroupBox.Text = "Details";
190      //
191      // viewHost
192      //
193      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
194                  | System.Windows.Forms.AnchorStyles.Left)
195                  | System.Windows.Forms.AnchorStyles.Right)));
196      this.viewHost.Content = null;
197      this.viewHost.Location = new System.Drawing.Point(6, 19);
198      this.viewHost.Name = "viewHost";
199      this.viewHost.Size = new System.Drawing.Size(254, 310);
200      this.viewHost.TabIndex = 0;
201      //
202      // itemsGroupBox
203      //
204      this.itemsGroupBox.Controls.Add(this.splitContainer);
205      this.itemsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
206      this.itemsGroupBox.Location = new System.Drawing.Point(0, 0);
207      this.itemsGroupBox.Name = "itemsGroupBox";
208      this.itemsGroupBox.Size = new System.Drawing.Size(532, 383);
209      this.itemsGroupBox.TabIndex = 0;
210      this.itemsGroupBox.TabStop = false;
211      this.itemsGroupBox.Text = "Items";
212      //
213      // ItemCollectionView
214      //
215      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
216      this.Controls.Add(this.itemsGroupBox);
217      this.Name = "ItemCollectionView";
218      this.Size = new System.Drawing.Size(532, 383);
219      this.splitContainer.Panel1.ResumeLayout(false);
220      this.splitContainer.Panel2.ResumeLayout(false);
221      this.splitContainer.ResumeLayout(false);
222      this.detailsGroupBox.ResumeLayout(false);
223      this.itemsGroupBox.ResumeLayout(false);
224      this.ResumeLayout(false);
225
226    }
227
228    #endregion
229
230    protected System.Windows.Forms.SplitContainer splitContainer;
231    protected System.Windows.Forms.ColumnHeader columnHeader1;
232    protected GroupBox itemsGroupBox;
233    protected ListView itemsListView;
234    protected GroupBox detailsGroupBox;
235    protected Button addButton;
236    protected Button removeButton;
237    protected ToolTip toolTip;
238    protected ImageList imageList;
239    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
240    protected Button sortAscendingButton;
241    protected Button sortDescendingButton;
242  }
243}
Note: See TracBrowser for help on using the repository browser.