Free cookie consent management tool by TermsFeed Policy Generator

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

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

Enabled hiding details in all collection views (#1095)

File size: 12.7 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;
24
25namespace HeuristicLab.Core.Views {
26  partial class ItemCollectionView<T> {
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 (disposing) {
38        if (typeSelectorDialog != null) typeSelectorDialog.Dispose();
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 = ((System.Windows.Forms.ColumnHeader)(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.showDetailsCheckBox = new System.Windows.Forms.CheckBox();
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.showDetailsCheckBox);
86      this.splitContainer.Panel1.Controls.Add(this.itemsListView);
87      this.splitContainer.Panel1.Controls.Add(this.sortDescendingButton);
88      this.splitContainer.Panel1.Controls.Add(this.sortAscendingButton);
89      this.splitContainer.Panel1.Controls.Add(this.removeButton);
90      this.splitContainer.Panel1.Controls.Add(this.addButton);
91      this.splitContainer.Panel1MinSize = 100;
92      //
93      // splitContainer.Panel2
94      //
95      this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
96      this.splitContainer.Size = new System.Drawing.Size(526, 364);
97      this.splitContainer.SplitterDistance = 250;
98      this.splitContainer.TabIndex = 0;
99      //
100      // itemsListView
101      //
102      this.itemsListView.AllowDrop = true;
103      this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
104                  | System.Windows.Forms.AnchorStyles.Left)
105                  | System.Windows.Forms.AnchorStyles.Right)));
106      this.itemsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
107            this.columnHeader1});
108      this.itemsListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
109      this.itemsListView.HideSelection = false;
110      this.itemsListView.Location = new System.Drawing.Point(3, 33);
111      this.itemsListView.Name = "itemsListView";
112      this.itemsListView.ShowItemToolTips = true;
113      this.itemsListView.Size = new System.Drawing.Size(244, 327);
114      this.itemsListView.SmallImageList = this.imageList;
115      this.itemsListView.TabIndex = 5;
116      this.itemsListView.UseCompatibleStateImageBehavior = false;
117      this.itemsListView.View = System.Windows.Forms.View.Details;
118      this.itemsListView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.itemsListView_ItemDrag);
119      this.itemsListView.SelectedIndexChanged += new System.EventHandler(this.itemsListView_SelectedIndexChanged);
120      this.itemsListView.DragDrop += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragDrop);
121      this.itemsListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
122      this.itemsListView.DragOver += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
123      this.itemsListView.DoubleClick += new System.EventHandler(this.itemsListView_DoubleClick);
124      this.itemsListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.itemsListView_KeyDown);
125      //
126      // imageList
127      //
128      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
129      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
130      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
131      //
132      // sortDescendingButton
133      //
134      this.sortDescendingButton.Enabled = false;
135      this.sortDescendingButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.SortUp;
136      this.sortDescendingButton.Location = new System.Drawing.Point(33, 3);
137      this.sortDescendingButton.Name = "sortDescendingButton";
138      this.sortDescendingButton.Size = new System.Drawing.Size(24, 24);
139      this.sortDescendingButton.TabIndex = 1;
140      this.toolTip.SetToolTip(this.sortDescendingButton, "Sort Descending");
141      this.sortDescendingButton.UseVisualStyleBackColor = true;
142      this.sortDescendingButton.Click += new System.EventHandler(this.sortDescendingButton_Click);
143      //
144      // sortAscendingButton
145      //
146      this.sortAscendingButton.Enabled = false;
147      this.sortAscendingButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Sort;
148      this.sortAscendingButton.Location = new System.Drawing.Point(63, 3);
149      this.sortAscendingButton.Name = "sortAscendingButton";
150      this.sortAscendingButton.Size = new System.Drawing.Size(24, 24);
151      this.sortAscendingButton.TabIndex = 2;
152      this.toolTip.SetToolTip(this.sortAscendingButton, "Sort Ascending");
153      this.sortAscendingButton.UseVisualStyleBackColor = true;
154      this.sortAscendingButton.Click += new System.EventHandler(this.sortAscendingButton_Click);
155      //
156      // removeButton
157      //
158      this.removeButton.Enabled = false;
159      this.removeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
160      this.removeButton.Location = new System.Drawing.Point(93, 3);
161      this.removeButton.Name = "removeButton";
162      this.removeButton.Size = new System.Drawing.Size(24, 24);
163      this.removeButton.TabIndex = 3;
164      this.toolTip.SetToolTip(this.removeButton, "Remove");
165      this.removeButton.UseVisualStyleBackColor = true;
166      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
167      //
168      // addButton
169      //
170      this.addButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Add;
171      this.addButton.Location = new System.Drawing.Point(3, 3);
172      this.addButton.Name = "addButton";
173      this.addButton.Size = new System.Drawing.Size(24, 24);
174      this.addButton.TabIndex = 0;
175      this.toolTip.SetToolTip(this.addButton, "Add");
176      this.addButton.UseVisualStyleBackColor = true;
177      this.addButton.Click += new System.EventHandler(this.addButton_Click);
178      //
179      // detailsGroupBox
180      //
181      this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
182                  | System.Windows.Forms.AnchorStyles.Left)
183                  | System.Windows.Forms.AnchorStyles.Right)));
184      this.detailsGroupBox.Controls.Add(this.viewHost);
185      this.detailsGroupBox.Location = new System.Drawing.Point(3, 27);
186      this.detailsGroupBox.Name = "detailsGroupBox";
187      this.detailsGroupBox.Size = new System.Drawing.Size(266, 335);
188      this.detailsGroupBox.TabIndex = 0;
189      this.detailsGroupBox.TabStop = false;
190      this.detailsGroupBox.Text = "Details";
191      //
192      // viewHost
193      //
194      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
195                  | System.Windows.Forms.AnchorStyles.Left)
196                  | System.Windows.Forms.AnchorStyles.Right)));
197      this.viewHost.Caption = "View";
198      this.viewHost.Content = null;
199      this.viewHost.Location = new System.Drawing.Point(6, 19);
200      this.viewHost.Name = "viewHost";
201      this.viewHost.ReadOnly = false;
202      this.viewHost.Size = new System.Drawing.Size(254, 310);
203      this.viewHost.TabIndex = 0;
204      this.viewHost.ViewType = null;
205      //
206      // itemsGroupBox
207      //
208      this.itemsGroupBox.Controls.Add(this.splitContainer);
209      this.itemsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
210      this.itemsGroupBox.Location = new System.Drawing.Point(0, 0);
211      this.itemsGroupBox.Name = "itemsGroupBox";
212      this.itemsGroupBox.Size = new System.Drawing.Size(532, 383);
213      this.itemsGroupBox.TabIndex = 0;
214      this.itemsGroupBox.TabStop = false;
215      this.itemsGroupBox.Text = "Items";
216      //
217      // showDetailsCheckBox
218      //
219      this.showDetailsCheckBox.Appearance = System.Windows.Forms.Appearance.Button;
220      this.showDetailsCheckBox.Checked = true;
221      this.showDetailsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
222      this.showDetailsCheckBox.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Properties;
223      this.showDetailsCheckBox.Location = new System.Drawing.Point(123, 3);
224      this.showDetailsCheckBox.Name = "showDetailsCheckBox";
225      this.showDetailsCheckBox.Size = new System.Drawing.Size(24, 24);
226      this.showDetailsCheckBox.TabIndex = 4;
227      this.toolTip.SetToolTip(this.showDetailsCheckBox, "Show/Hide Details");
228      this.showDetailsCheckBox.UseVisualStyleBackColor = true;
229      this.showDetailsCheckBox.CheckedChanged += new System.EventHandler(this.showDetailsCheckBox_CheckedChanged);
230      //
231      // ItemCollectionView
232      //
233      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
234      this.Controls.Add(this.itemsGroupBox);
235      this.Name = "ItemCollectionView";
236      this.Size = new System.Drawing.Size(532, 383);
237      this.splitContainer.Panel1.ResumeLayout(false);
238      this.splitContainer.Panel2.ResumeLayout(false);
239      this.splitContainer.ResumeLayout(false);
240      this.detailsGroupBox.ResumeLayout(false);
241      this.itemsGroupBox.ResumeLayout(false);
242      this.ResumeLayout(false);
243
244    }
245
246    #endregion
247
248    protected System.Windows.Forms.SplitContainer splitContainer;
249    protected System.Windows.Forms.ColumnHeader columnHeader1;
250    protected GroupBox itemsGroupBox;
251    protected ListView itemsListView;
252    protected GroupBox detailsGroupBox;
253    protected Button addButton;
254    protected Button removeButton;
255    protected ToolTip toolTip;
256    protected ImageList imageList;
257    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
258    protected Button sortAscendingButton;
259    protected Button sortDescendingButton;
260    protected CheckBox showDetailsCheckBox;
261  }
262}
Note: See TracBrowser for help on using the repository browser.