Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2994-AutoDiffForIntervals/HeuristicLab.Core.Views/3.3/ItemListView.Designer.cs @ 17209

Last change on this file since 17209 was 17209, checked in by gkronber, 5 years ago

#2994: merged r17132:17198 from trunk to branch

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