Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Core.Views/3.3/ItemCollectionView.Designer.cs @ 12105

Last change on this file since 12105 was 12105, checked in by bburlacu, 9 years ago

#2276: Merged trunk changes.

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