Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core.Views/3.3/Clipboard.Designer.cs @ 4300

Last change on this file since 4300 was 3764, checked in by mkommend, 14 years ago

adapted view captions (ticket #893)

File size: 11.0 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 Clipboard<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 listView.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 Component 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.listView = new System.Windows.Forms.ListView();
57      this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
58      this.imageList = new System.Windows.Forms.ImageList(this.components);
59      this.infoPanel = new System.Windows.Forms.Panel();
60      this.progressBar = new System.Windows.Forms.ProgressBar();
61      this.infoLabel = new System.Windows.Forms.Label();
62      this.sortDescendingButton = new System.Windows.Forms.Button();
63      this.sortAscendingButton = new System.Windows.Forms.Button();
64      this.removeButton = new System.Windows.Forms.Button();
65      this.addButton = new System.Windows.Forms.Button();
66      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
67      this.saveButton = new System.Windows.Forms.Button();
68      this.infoPanel.SuspendLayout();
69      this.SuspendLayout();
70      //
71      // listView
72      //
73      this.listView.AllowDrop = true;
74      this.listView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
75                  | System.Windows.Forms.AnchorStyles.Left)
76                  | System.Windows.Forms.AnchorStyles.Right)));
77      this.listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
78            this.columnHeader1});
79      this.listView.FullRowSelect = true;
80      this.listView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
81      this.listView.HideSelection = false;
82      this.listView.Location = new System.Drawing.Point(0, 30);
83      this.listView.Name = "listView";
84      this.listView.ShowItemToolTips = true;
85      this.listView.Size = new System.Drawing.Size(179, 432);
86      this.listView.SmallImageList = this.imageList;
87      this.listView.Sorting = System.Windows.Forms.SortOrder.Ascending;
88      this.listView.TabIndex = 0;
89      this.listView.UseCompatibleStateImageBehavior = false;
90      this.listView.View = System.Windows.Forms.View.Details;
91      this.listView.SelectedIndexChanged += new System.EventHandler(this.listView_SelectedIndexChanged);
92      this.listView.DoubleClick += new System.EventHandler(this.listView_DoubleClick);
93      this.listView.DragDrop += new System.Windows.Forms.DragEventHandler(this.listView_DragDrop);
94      this.listView.DragEnter += new System.Windows.Forms.DragEventHandler(this.listView_DragEnterOver);
95      this.listView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.listView_KeyDown);
96      this.listView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.listView_ItemDrag);
97      this.listView.DragOver += new System.Windows.Forms.DragEventHandler(this.listView_DragEnterOver);
98      //
99      // imageList
100      //
101      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
102      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
103      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
104      //
105      // infoPanel
106      //
107      this.infoPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
108      this.infoPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
109      this.infoPanel.Controls.Add(this.progressBar);
110      this.infoPanel.Controls.Add(this.infoLabel);
111      this.infoPanel.Enabled = false;
112      this.infoPanel.Location = new System.Drawing.Point(13, 202);
113      this.infoPanel.Name = "infoPanel";
114      this.infoPanel.Size = new System.Drawing.Size(154, 59);
115      this.infoPanel.TabIndex = 6;
116      //
117      // progressBar
118      //
119      this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
120      this.progressBar.Location = new System.Drawing.Point(3, 30);
121      this.progressBar.Name = "progressBar";
122      this.progressBar.Size = new System.Drawing.Size(146, 23);
123      this.progressBar.Step = 1;
124      this.progressBar.TabIndex = 1;
125      //
126      // infoLabel
127      //
128      this.infoLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
129      this.infoLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
130      this.infoLabel.Location = new System.Drawing.Point(3, 4);
131      this.infoLabel.Name = "infoLabel";
132      this.infoLabel.Size = new System.Drawing.Size(146, 23);
133      this.infoLabel.TabIndex = 0;
134      this.infoLabel.Text = "Loading ...";
135      this.infoLabel.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
136      //
137      // sortDescendingButton
138      //
139      this.sortDescendingButton.Enabled = false;
140      this.sortDescendingButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.SortUp;
141      this.sortDescendingButton.Location = new System.Drawing.Point(30, 0);
142      this.sortDescendingButton.Name = "sortDescendingButton";
143      this.sortDescendingButton.Size = new System.Drawing.Size(24, 24);
144      this.sortDescendingButton.TabIndex = 2;
145      this.toolTip.SetToolTip(this.sortDescendingButton, "Sort Descending");
146      this.sortDescendingButton.UseVisualStyleBackColor = true;
147      this.sortDescendingButton.Click += new System.EventHandler(this.sortDescendingButton_Click);
148      //
149      // sortAscendingButton
150      //
151      this.sortAscendingButton.Enabled = false;
152      this.sortAscendingButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Sort;
153      this.sortAscendingButton.Location = new System.Drawing.Point(60, 0);
154      this.sortAscendingButton.Name = "sortAscendingButton";
155      this.sortAscendingButton.Size = new System.Drawing.Size(24, 24);
156      this.sortAscendingButton.TabIndex = 3;
157      this.toolTip.SetToolTip(this.sortAscendingButton, "Sort Ascending");
158      this.sortAscendingButton.UseVisualStyleBackColor = true;
159      this.sortAscendingButton.Click += new System.EventHandler(this.sortAscendingButton_Click);
160      //
161      // removeButton
162      //
163      this.removeButton.Enabled = false;
164      this.removeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
165      this.removeButton.Location = new System.Drawing.Point(90, 0);
166      this.removeButton.Name = "removeButton";
167      this.removeButton.Size = new System.Drawing.Size(24, 24);
168      this.removeButton.TabIndex = 4;
169      this.toolTip.SetToolTip(this.removeButton, "Remove Item");
170      this.removeButton.UseVisualStyleBackColor = true;
171      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
172      //
173      // addButton
174      //
175      this.addButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Add;
176      this.addButton.Location = new System.Drawing.Point(0, 0);
177      this.addButton.Name = "addButton";
178      this.addButton.Size = new System.Drawing.Size(24, 24);
179      this.addButton.TabIndex = 1;
180      this.toolTip.SetToolTip(this.addButton, "Add Item");
181      this.addButton.UseVisualStyleBackColor = true;
182      this.addButton.Click += new System.EventHandler(this.addButton_Click);
183      //
184      // saveButton
185      //
186      this.saveButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Save;
187      this.saveButton.Location = new System.Drawing.Point(120, 0);
188      this.saveButton.Name = "saveButton";
189      this.saveButton.Size = new System.Drawing.Size(24, 24);
190      this.saveButton.TabIndex = 5;
191      this.toolTip.SetToolTip(this.saveButton, "Save All Items");
192      this.saveButton.UseVisualStyleBackColor = true;
193      this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
194      //
195      // Clipboard
196      //
197      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
198      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
199      this.Controls.Add(this.sortDescendingButton);
200      this.Controls.Add(this.sortAscendingButton);
201      this.Controls.Add(this.saveButton);
202      this.Controls.Add(this.removeButton);
203      this.Controls.Add(this.addButton);
204      this.Controls.Add(this.infoPanel);
205      this.Controls.Add(this.listView);
206      this.Name = "Clipboard";
207      this.Size = new System.Drawing.Size(179, 462);
208      this.infoPanel.ResumeLayout(false);
209      this.ResumeLayout(false);
210
211    }
212
213    #endregion
214
215    private System.Windows.Forms.ListView listView;
216    private System.Windows.Forms.Panel infoPanel;
217    private System.Windows.Forms.ProgressBar progressBar;
218    private System.Windows.Forms.Label infoLabel;
219    private System.Windows.Forms.ImageList imageList;
220    private System.Windows.Forms.Button sortDescendingButton;
221    private System.Windows.Forms.Button sortAscendingButton;
222    private System.Windows.Forms.Button removeButton;
223    private System.Windows.Forms.Button addButton;
224    private System.Windows.Forms.ColumnHeader columnHeader1;
225    private System.Windows.Forms.ToolTip toolTip;
226    private System.Windows.Forms.Button saveButton;
227
228  }
229}
Note: See TracBrowser for help on using the repository browser.