Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionView.Designer.cs @ 3455

Last change on this file since 3455 was 3351, checked in by swagner, 14 years ago

Implemented reviewers' comments (#893).

File size: 9.2 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;
24using System.ComponentModel;
25
26namespace HeuristicLab.Optimization.Views {
27  partial class RunCollectionView {
28    /// <summary>
29    /// Required designer variable.
30    /// </summary>
31    private System.ComponentModel.IContainer components = null;
32
33    /// <summary>
34    /// Clean up any resources being used.
35    /// </summary>
36    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
37    protected override void Dispose(bool disposing) {
38      if (disposing) {
39        foreach (ListViewItem item in itemsListView.Items) {
40          ((IRun)item.Tag).ItemImageChanged -= new EventHandler(Item_ItemImageChanged);
41          ((IRun)item.Tag).ToStringChanged -= new EventHandler(Item_ToStringChanged);
42        }
43        if (components != null) components.Dispose();
44      }
45      base.Dispose(disposing);
46    }
47
48    #region Windows Form 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.splitContainer = new System.Windows.Forms.SplitContainer();
57      this.itemsListView = new System.Windows.Forms.ListView();
58      this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
59      this.imageList = new System.Windows.Forms.ImageList(this.components);
60      this.removeButton = new System.Windows.Forms.Button();
61      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
62      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
63      this.itemsGroupBox = new System.Windows.Forms.GroupBox();
64      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
65      this.splitContainer.Panel1.SuspendLayout();
66      this.splitContainer.Panel2.SuspendLayout();
67      this.splitContainer.SuspendLayout();
68      this.detailsGroupBox.SuspendLayout();
69      this.itemsGroupBox.SuspendLayout();
70      this.SuspendLayout();
71      //
72      // splitContainer
73      //
74      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
75      this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
76      this.splitContainer.Location = new System.Drawing.Point(3, 16);
77      this.splitContainer.Name = "splitContainer";
78      //
79      // splitContainer.Panel1
80      //
81      this.splitContainer.Panel1.Controls.Add(this.itemsListView);
82      this.splitContainer.Panel1.Controls.Add(this.removeButton);
83      this.splitContainer.Panel1MinSize = 100;
84      //
85      // splitContainer.Panel2
86      //
87      this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
88      this.splitContainer.Size = new System.Drawing.Size(526, 364);
89      this.splitContainer.SplitterDistance = 250;
90      this.splitContainer.TabIndex = 0;
91      //
92      // itemsListView
93      //
94      this.itemsListView.AllowDrop = true;
95      this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
96                  | System.Windows.Forms.AnchorStyles.Left)
97                  | System.Windows.Forms.AnchorStyles.Right)));
98      this.itemsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
99            this.columnHeader1});
100      this.itemsListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
101      this.itemsListView.HideSelection = false;
102      this.itemsListView.Location = new System.Drawing.Point(3, 33);
103      this.itemsListView.Name = "itemsListView";
104      this.itemsListView.ShowItemToolTips = true;
105      this.itemsListView.Size = new System.Drawing.Size(244, 327);
106      this.itemsListView.SmallImageList = this.imageList;
107      this.itemsListView.TabIndex = 1;
108      this.itemsListView.UseCompatibleStateImageBehavior = false;
109      this.itemsListView.View = System.Windows.Forms.View.Details;
110      this.itemsListView.SelectedIndexChanged += new System.EventHandler(this.itemsListView_SelectedIndexChanged);
111      this.itemsListView.SizeChanged += new System.EventHandler(this.itemsListView_SizeChanged);
112      this.itemsListView.DoubleClick += new System.EventHandler(this.itemsListView_DoubleClick);
113      this.itemsListView.DragDrop += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragDrop);
114      this.itemsListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
115      this.itemsListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.itemsListView_KeyDown);
116      this.itemsListView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.itemsListView_ItemDrag);
117      this.itemsListView.DragOver += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
118      //
119      // imageList
120      //
121      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
122      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
123      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
124      //
125      // removeButton
126      //
127      this.removeButton.Enabled = false;
128      this.removeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
129      this.removeButton.Location = new System.Drawing.Point(3, 3);
130      this.removeButton.Name = "removeButton";
131      this.removeButton.Size = new System.Drawing.Size(24, 24);
132      this.removeButton.TabIndex = 0;
133      this.toolTip.SetToolTip(this.removeButton, "Remove");
134      this.removeButton.UseVisualStyleBackColor = true;
135      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
136      //
137      // detailsGroupBox
138      //
139      this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
140                  | System.Windows.Forms.AnchorStyles.Left)
141                  | System.Windows.Forms.AnchorStyles.Right)));
142      this.detailsGroupBox.Controls.Add(this.viewHost);
143      this.detailsGroupBox.Location = new System.Drawing.Point(3, 27);
144      this.detailsGroupBox.Name = "detailsGroupBox";
145      this.detailsGroupBox.Size = new System.Drawing.Size(266, 335);
146      this.detailsGroupBox.TabIndex = 0;
147      this.detailsGroupBox.TabStop = false;
148      this.detailsGroupBox.Text = "Details";
149      //
150      // viewHost
151      //
152      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
153                  | System.Windows.Forms.AnchorStyles.Left)
154                  | System.Windows.Forms.AnchorStyles.Right)));
155      this.viewHost.Content = null;
156      this.viewHost.Location = new System.Drawing.Point(6, 19);
157      this.viewHost.Name = "viewHost";
158      this.viewHost.Size = new System.Drawing.Size(254, 310);
159      this.viewHost.TabIndex = 0;
160      this.viewHost.ViewType = null;
161      //
162      // itemsGroupBox
163      //
164      this.itemsGroupBox.Controls.Add(this.splitContainer);
165      this.itemsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
166      this.itemsGroupBox.Location = new System.Drawing.Point(0, 0);
167      this.itemsGroupBox.Name = "itemsGroupBox";
168      this.itemsGroupBox.Size = new System.Drawing.Size(532, 383);
169      this.itemsGroupBox.TabIndex = 0;
170      this.itemsGroupBox.TabStop = false;
171      this.itemsGroupBox.Text = "Items";
172      //
173      // RunCollectionView
174      //
175      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
176      this.Controls.Add(this.itemsGroupBox);
177      this.Name = "RunCollectionView";
178      this.Size = new System.Drawing.Size(532, 383);
179      this.splitContainer.Panel1.ResumeLayout(false);
180      this.splitContainer.Panel2.ResumeLayout(false);
181      this.splitContainer.ResumeLayout(false);
182      this.detailsGroupBox.ResumeLayout(false);
183      this.itemsGroupBox.ResumeLayout(false);
184      this.ResumeLayout(false);
185
186    }
187
188    #endregion
189
190    protected System.Windows.Forms.SplitContainer splitContainer;
191    protected System.Windows.Forms.ColumnHeader columnHeader1;
192    protected GroupBox itemsGroupBox;
193    protected ListView itemsListView;
194    protected GroupBox detailsGroupBox;
195    protected Button removeButton;
196    protected ToolTip toolTip;
197    protected ImageList imageList;
198    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
199  }
200}
Note: See TracBrowser for help on using the repository browser.