Free cookie consent management tool by TermsFeed Policy Generator

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

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

Adapted views of HeuristicLab.Core.Views according the new read-only property and renamed method SetEnableStateOfControls into SetEnabledStateOfControls (#973).

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