Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Core.Views/3.3/Clipboard.Designer.cs @ 17181

Last change on this file since 17181 was 17181, checked in by swagner, 5 years ago

#2875: Merged r17180 from trunk to stable

File size: 10.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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
22
23namespace HeuristicLab.Core.Views {
24  partial class Clipboard<T> {
25    /// <summary>
26    /// Required designer variable.
27    /// </summary>
28    private System.ComponentModel.IContainer components = null;
29
30    #region Component Designer generated code
31
32    /// <summary>
33    /// Required method for Designer support - do not modify
34    /// the contents of this method with the code editor.
35    /// </summary>
36    private void InitializeComponent() {
37      this.components = new System.ComponentModel.Container();
38      this.listView = new System.Windows.Forms.ListView();
39      this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
40      this.imageList = new System.Windows.Forms.ImageList(this.components);
41      this.infoPanel = new System.Windows.Forms.Panel();
42      this.progressBar = new System.Windows.Forms.ProgressBar();
43      this.infoLabel = new System.Windows.Forms.Label();
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.toolTip = new System.Windows.Forms.ToolTip(this.components);
49      this.saveButton = new System.Windows.Forms.Button();
50      this.infoPanel.SuspendLayout();
51      this.SuspendLayout();
52      //
53      // listView
54      //
55      this.listView.AllowDrop = true;
56      this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
57                  | System.Windows.Forms.AnchorStyles.Left)
58                  | System.Windows.Forms.AnchorStyles.Right)));
59      this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
60            this.columnHeader1});
61      this.listView.FullRowSelect = true;
62      this.listView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
63      this.listView.HideSelection = false;
64      this.listView.Location = new System.Drawing.Point(0, 30);
65      this.listView.Name = "listView";
66      this.listView.ShowItemToolTips = true;
67      this.listView.Size = new System.Drawing.Size(179, 432);
68      this.listView.SmallImageList = this.imageList;
69      this.listView.Sorting = System.Windows.Forms.SortOrder.Ascending;
70      this.listView.TabIndex = 0;
71      this.listView.UseCompatibleStateImageBehavior = false;
72      this.listView.View = System.Windows.Forms.View.Details;
73      this.listView.SelectedIndexChanged += new System.EventHandler(this.listView_SelectedIndexChanged);
74      this.listView.DoubleClick += new System.EventHandler(this.listView_DoubleClick);
75      this.listView.DragDrop += new System.Windows.Forms.DragEventHandler(this.listView_DragDrop);
76      this.listView.DragEnter += new System.Windows.Forms.DragEventHandler(this.listView_DragEnter);
77      this.listView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.listView_KeyDown);
78      this.listView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.listView_ItemDrag);
79      this.listView.DragOver += new System.Windows.Forms.DragEventHandler(this.listView_DragOver);
80      //
81      // imageList
82      //
83      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
84      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
85      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
86      //
87      // infoPanel
88      //
89      this.infoPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
90      this.infoPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
91      this.infoPanel.Controls.Add(this.progressBar);
92      this.infoPanel.Controls.Add(this.infoLabel);
93      this.infoPanel.Enabled = false;
94      this.infoPanel.Location = new System.Drawing.Point(13, 202);
95      this.infoPanel.Name = "infoPanel";
96      this.infoPanel.Size = new System.Drawing.Size(154, 59);
97      this.infoPanel.TabIndex = 6;
98      //
99      // progressBar
100      //
101      this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
102      this.progressBar.Location = new System.Drawing.Point(3, 30);
103      this.progressBar.Name = "progressBar";
104      this.progressBar.Size = new System.Drawing.Size(146, 23);
105      this.progressBar.Step = 1;
106      this.progressBar.TabIndex = 1;
107      //
108      // infoLabel
109      //
110      this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
111      this.infoLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
112      this.infoLabel.Location = new System.Drawing.Point(3, 4);
113      this.infoLabel.Name = "infoLabel";
114      this.infoLabel.Size = new System.Drawing.Size(146, 23);
115      this.infoLabel.TabIndex = 0;
116      this.infoLabel.Text = "Loading ...";
117      this.infoLabel.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
118      //
119      // sortDescendingButton
120      //
121      this.sortDescendingButton.Enabled = false;
122      this.sortDescendingButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.SortUp;
123      this.sortDescendingButton.Location = new System.Drawing.Point(30, 0);
124      this.sortDescendingButton.Name = "sortDescendingButton";
125      this.sortDescendingButton.Size = new System.Drawing.Size(24, 24);
126      this.sortDescendingButton.TabIndex = 2;
127      this.toolTip.SetToolTip(this.sortDescendingButton, "Sort Descending");
128      this.sortDescendingButton.UseVisualStyleBackColor = true;
129      this.sortDescendingButton.Click += new System.EventHandler(this.sortDescendingButton_Click);
130      //
131      // sortAscendingButton
132      //
133      this.sortAscendingButton.Enabled = false;
134      this.sortAscendingButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Sort;
135      this.sortAscendingButton.Location = new System.Drawing.Point(60, 0);
136      this.sortAscendingButton.Name = "sortAscendingButton";
137      this.sortAscendingButton.Size = new System.Drawing.Size(24, 24);
138      this.sortAscendingButton.TabIndex = 3;
139      this.toolTip.SetToolTip(this.sortAscendingButton, "Sort Ascending");
140      this.sortAscendingButton.UseVisualStyleBackColor = true;
141      this.sortAscendingButton.Click += new System.EventHandler(this.sortAscendingButton_Click);
142      //
143      // removeButton
144      //
145      this.removeButton.Enabled = false;
146      this.removeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
147      this.removeButton.Location = new System.Drawing.Point(90, 0);
148      this.removeButton.Name = "removeButton";
149      this.removeButton.Size = new System.Drawing.Size(24, 24);
150      this.removeButton.TabIndex = 4;
151      this.toolTip.SetToolTip(this.removeButton, "Remove Item");
152      this.removeButton.UseVisualStyleBackColor = true;
153      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
154      //
155      // addButton
156      //
157      this.addButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Add;
158      this.addButton.Location = new System.Drawing.Point(0, 0);
159      this.addButton.Name = "addButton";
160      this.addButton.Size = new System.Drawing.Size(24, 24);
161      this.addButton.TabIndex = 1;
162      this.toolTip.SetToolTip(this.addButton, "Add Item");
163      this.addButton.UseVisualStyleBackColor = true;
164      this.addButton.Click += new System.EventHandler(this.addButton_Click);
165      //
166      // saveButton
167      //
168      this.saveButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save;
169      this.saveButton.Location = new System.Drawing.Point(120, 0);
170      this.saveButton.Name = "saveButton";
171      this.saveButton.Size = new System.Drawing.Size(24, 24);
172      this.saveButton.TabIndex = 5;
173      this.toolTip.SetToolTip(this.saveButton, "Save All Items");
174      this.saveButton.UseVisualStyleBackColor = true;
175      this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
176      //
177      // Clipboard
178      //
179      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
180      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
181      this.Controls.Add(this.sortDescendingButton);
182      this.Controls.Add(this.sortAscendingButton);
183      this.Controls.Add(this.saveButton);
184      this.Controls.Add(this.removeButton);
185      this.Controls.Add(this.addButton);
186      this.Controls.Add(this.infoPanel);
187      this.Controls.Add(this.listView);
188      this.Name = "Clipboard";
189      this.Size = new System.Drawing.Size(179, 462);
190      this.infoPanel.ResumeLayout(false);
191      this.ResumeLayout(false);
192
193    }
194
195    #endregion
196
197    private System.Windows.Forms.ListView listView;
198    private System.Windows.Forms.Panel infoPanel;
199    private System.Windows.Forms.ProgressBar progressBar;
200    private System.Windows.Forms.Label infoLabel;
201    private System.Windows.Forms.ImageList imageList;
202    private System.Windows.Forms.Button sortDescendingButton;
203    private System.Windows.Forms.Button sortAscendingButton;
204    private System.Windows.Forms.Button removeButton;
205    private System.Windows.Forms.Button addButton;
206    private System.Windows.Forms.ColumnHeader columnHeader1;
207    private System.Windows.Forms.ToolTip toolTip;
208    private System.Windows.Forms.Button saveButton;
209
210  }
211}
Note: See TracBrowser for help on using the repository browser.