Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/ItemListView.Designer.cs @ 5068

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

Enabled hiding details in all collection views (#1095)

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