Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Core.Views/3.3/ItemArrayView.Designer.cs @ 17097

Last change on this file since 17097 was 17097, checked in by mkommend, 5 years ago

#2520: Merged 16565 - 16579 into stable.

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