Free cookie consent management tool by TermsFeed Policy Generator

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

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

Sorted usings and removed unused usings in entire solution (#1094)

File size: 14.7 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.Optimization.Views {
26  partial class RunCollectionView {
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        foreach (ListViewItem item in itemsListView.Items) {
39          ((IRun)item.Tag).ItemImageChanged -= new EventHandler(Item_ItemImageChanged);
40          ((IRun)item.Tag).ToStringChanged -= new EventHandler(Item_ToStringChanged);
41        }
42        if (components != null) components.Dispose();
43      }
44      base.Dispose(disposing);
45    }
46
47    #region Windows Form Designer generated code
48
49    /// <summary>
50    /// Required method for Designer support - do not modify
51    /// the contents of this method with the code editor.
52    /// </summary>
53    private void InitializeComponent() {
54      this.components = new System.ComponentModel.Container();
55      this.splitContainer = new System.Windows.Forms.SplitContainer();
56      this.toolStrip = new System.Windows.Forms.ToolStrip();
57      this.analyzeRunsToolStripDropDownButton = new System.Windows.Forms.ToolStripDropDownButton();
58      this.itemsListView = new System.Windows.Forms.ListView();
59      this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
60      this.imageList = new System.Windows.Forms.ImageList(this.components);
61      this.removeButton = new System.Windows.Forms.Button();
62      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
63      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
64      this.itemsGroupBox = new System.Windows.Forms.GroupBox();
65      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
66      this.tabControl = new System.Windows.Forms.TabControl();
67      this.runPage = new System.Windows.Forms.TabPage();
68      this.constraintPage = new System.Windows.Forms.TabPage();
69      this.runCollectionConstraintCollectionView = new RunCollectionConstraintCollectionView();
70      this.clearButton = new System.Windows.Forms.Button();
71      this.splitContainer.Panel1.SuspendLayout();
72      this.splitContainer.Panel2.SuspendLayout();
73      this.splitContainer.SuspendLayout();
74      this.toolStrip.SuspendLayout();
75      this.detailsGroupBox.SuspendLayout();
76      this.itemsGroupBox.SuspendLayout();
77      this.tabControl.SuspendLayout();
78      this.runPage.SuspendLayout();
79      this.constraintPage.SuspendLayout();
80      this.SuspendLayout();
81      //
82      // splitContainer
83      //
84      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
85      this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
86      this.splitContainer.Location = new System.Drawing.Point(3, 16);
87      this.splitContainer.Name = "splitContainer";
88      //
89      // splitContainer.Panel1
90      //
91      this.splitContainer.Panel1.Controls.Add(this.clearButton);
92      this.splitContainer.Panel1.Controls.Add(this.toolStrip);
93      this.splitContainer.Panel1.Controls.Add(this.itemsListView);
94      this.splitContainer.Panel1.Controls.Add(this.removeButton);
95      this.splitContainer.Panel1MinSize = 100;
96      //
97      // splitContainer.Panel2
98      //
99      this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
100      this.splitContainer.Size = new System.Drawing.Size(512, 332);
101      this.splitContainer.SplitterDistance = 250;
102      this.splitContainer.TabIndex = 0;
103      //
104      // toolStrip
105      //
106      this.toolStrip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
107                  | System.Windows.Forms.AnchorStyles.Right)));
108      this.toolStrip.AutoSize = false;
109      this.toolStrip.Dock = System.Windows.Forms.DockStyle.None;
110      this.toolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
111      this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
112            this.analyzeRunsToolStripDropDownButton});
113      this.toolStrip.Location = new System.Drawing.Point(30, 3);
114      this.toolStrip.Name = "toolStrip";
115      this.toolStrip.Size = new System.Drawing.Size(166, 24);
116      this.toolStrip.TabIndex = 1;
117      this.toolStrip.Text = "toolStrip1";
118      //
119      // analyzeRunsToolStripDropDownButton
120      //
121      this.analyzeRunsToolStripDropDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
122      this.analyzeRunsToolStripDropDownButton.ImageTransparentColor = System.Drawing.Color.Magenta;
123      this.analyzeRunsToolStripDropDownButton.Name = "analyzeRunsToolStripDropDownButton";
124      this.analyzeRunsToolStripDropDownButton.Size = new System.Drawing.Size(99, 21);
125      this.analyzeRunsToolStripDropDownButton.Text = "&Analyze Runs...";
126      this.analyzeRunsToolStripDropDownButton.ToolTipText = "Show Run Analysis Views";
127      //
128      // itemsListView
129      //
130      this.itemsListView.AllowDrop = true;
131      this.itemsListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
132                  | System.Windows.Forms.AnchorStyles.Left)
133                  | System.Windows.Forms.AnchorStyles.Right)));
134      this.itemsListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
135            this.columnHeader1});
136      this.itemsListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
137      this.itemsListView.HideSelection = false;
138      this.itemsListView.Location = new System.Drawing.Point(3, 33);
139      this.itemsListView.Name = "itemsListView";
140      this.itemsListView.ShowItemToolTips = true;
141      this.itemsListView.Size = new System.Drawing.Size(244, 295);
142      this.itemsListView.SmallImageList = this.imageList;
143      this.itemsListView.TabIndex = 3;
144      this.itemsListView.UseCompatibleStateImageBehavior = false;
145      this.itemsListView.View = System.Windows.Forms.View.Details;
146      this.itemsListView.SelectedIndexChanged += new System.EventHandler(this.itemsListView_SelectedIndexChanged);
147      this.itemsListView.DoubleClick += new System.EventHandler(this.itemsListView_DoubleClick);
148      this.itemsListView.DragDrop += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragDrop);
149      this.itemsListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
150      this.itemsListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.itemsListView_KeyDown);
151      this.itemsListView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.itemsListView_ItemDrag);
152      this.itemsListView.DragOver += new System.Windows.Forms.DragEventHandler(this.itemsListView_DragEnterOver);
153      //
154      // imageList
155      //
156      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
157      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
158      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
159      //
160      // removeButton
161      //
162      this.removeButton.Enabled = false;
163      this.removeButton.Image = HeuristicLab.Common.Resources.VS2008ImageLibrary.Remove;
164      this.removeButton.Location = new System.Drawing.Point(3, 3);
165      this.removeButton.Name = "removeButton";
166      this.removeButton.Size = new System.Drawing.Size(24, 24);
167      this.removeButton.TabIndex = 0;
168      this.toolTip.SetToolTip(this.removeButton, "Remove");
169      this.removeButton.UseVisualStyleBackColor = true;
170      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
171      //
172      // detailsGroupBox
173      //
174      this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
175                  | System.Windows.Forms.AnchorStyles.Left)
176                  | System.Windows.Forms.AnchorStyles.Right)));
177      this.detailsGroupBox.Controls.Add(this.viewHost);
178      this.detailsGroupBox.Location = new System.Drawing.Point(3, 27);
179      this.detailsGroupBox.Name = "detailsGroupBox";
180      this.detailsGroupBox.Size = new System.Drawing.Size(252, 303);
181      this.detailsGroupBox.TabIndex = 0;
182      this.detailsGroupBox.TabStop = false;
183      this.detailsGroupBox.Text = "Details";
184      //
185      // viewHost
186      //
187      this.viewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
188                  | System.Windows.Forms.AnchorStyles.Left)
189                  | System.Windows.Forms.AnchorStyles.Right)));
190      this.viewHost.Content = null;
191      this.viewHost.Location = new System.Drawing.Point(6, 19);
192      this.viewHost.Name = "viewHost";
193      this.viewHost.ReadOnly = false;
194      this.viewHost.Size = new System.Drawing.Size(240, 278);
195      this.viewHost.TabIndex = 0;
196      this.viewHost.ViewType = null;
197      //
198      // itemsGroupBox
199      //
200      this.itemsGroupBox.Controls.Add(this.splitContainer);
201      this.itemsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
202      this.itemsGroupBox.Location = new System.Drawing.Point(3, 3);
203      this.itemsGroupBox.Name = "itemsGroupBox";
204      this.itemsGroupBox.Size = new System.Drawing.Size(518, 351);
205      this.itemsGroupBox.TabIndex = 0;
206      this.itemsGroupBox.TabStop = false;
207      this.itemsGroupBox.Text = "Items";
208      //
209      // tabControl
210      //
211      this.tabControl.Controls.Add(this.runPage);
212      this.tabControl.Controls.Add(this.constraintPage);
213      this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
214      this.tabControl.Location = new System.Drawing.Point(0, 0);
215      this.tabControl.Name = "tabControl";
216      this.tabControl.SelectedIndex = 0;
217      this.tabControl.Size = new System.Drawing.Size(532, 383);
218      this.tabControl.TabIndex = 0;
219      //
220      // runPage
221      //
222      this.runPage.Controls.Add(this.itemsGroupBox);
223      this.runPage.Location = new System.Drawing.Point(4, 22);
224      this.runPage.Name = "runPage";
225      this.runPage.Padding = new System.Windows.Forms.Padding(3);
226      this.runPage.Size = new System.Drawing.Size(524, 357);
227      this.runPage.TabIndex = 0;
228      this.runPage.Text = "Runs";
229      this.runPage.UseVisualStyleBackColor = true;
230      //
231      // constraintPage
232      //
233      this.constraintPage.Controls.Add(this.runCollectionConstraintCollectionView);
234      this.constraintPage.Location = new System.Drawing.Point(4, 22);
235      this.constraintPage.Name = "constraintPage";
236      this.constraintPage.Padding = new System.Windows.Forms.Padding(3);
237      this.constraintPage.Size = new System.Drawing.Size(524, 357);
238      this.constraintPage.TabIndex = 1;
239      this.constraintPage.Text = "Filtering";
240      this.constraintPage.UseVisualStyleBackColor = true;
241      //
242      // runCollectionConstraintCollectionView
243      //
244      this.runCollectionConstraintCollectionView.Content = null;
245      this.runCollectionConstraintCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
246      this.runCollectionConstraintCollectionView.Location = new System.Drawing.Point(3, 3);
247      this.runCollectionConstraintCollectionView.Name = "runCollectionConstraintCollectionView";
248      this.runCollectionConstraintCollectionView.ReadOnly = false;
249      this.runCollectionConstraintCollectionView.Size = new System.Drawing.Size(518, 351);
250      this.runCollectionConstraintCollectionView.TabIndex = 0;
251      //
252      // clearButton
253      //
254      this.clearButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
255      this.clearButton.Enabled = false;
256      this.clearButton.Location = new System.Drawing.Point(199, 3);
257      this.clearButton.Name = "clearButton";
258      this.clearButton.Size = new System.Drawing.Size(48, 24);
259      this.clearButton.TabIndex = 2;
260      this.clearButton.Text = "&Clear";
261      this.toolTip.SetToolTip(this.clearButton, "Remove All Runs");
262      this.clearButton.UseVisualStyleBackColor = true;
263      this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
264      //
265      // RunCollectionView
266      //
267      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
268      this.Controls.Add(this.tabControl);
269      this.Name = "RunCollectionView";
270      this.Size = new System.Drawing.Size(532, 383);
271      this.splitContainer.Panel1.ResumeLayout(false);
272      this.splitContainer.Panel2.ResumeLayout(false);
273      this.splitContainer.ResumeLayout(false);
274      this.toolStrip.ResumeLayout(false);
275      this.toolStrip.PerformLayout();
276      this.detailsGroupBox.ResumeLayout(false);
277      this.itemsGroupBox.ResumeLayout(false);
278      this.tabControl.ResumeLayout(false);
279      this.runPage.ResumeLayout(false);
280      this.constraintPage.ResumeLayout(false);
281      this.ResumeLayout(false);
282
283    }
284
285    #endregion
286
287    protected System.Windows.Forms.SplitContainer splitContainer;
288    protected System.Windows.Forms.ColumnHeader columnHeader1;
289    protected GroupBox itemsGroupBox;
290    protected ListView itemsListView;
291    protected GroupBox detailsGroupBox;
292    protected Button removeButton;
293    protected ToolTip toolTip;
294    protected ImageList imageList;
295    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
296    protected ToolStrip toolStrip;
297    protected ToolStripDropDownButton analyzeRunsToolStripDropDownButton;
298    protected TabControl tabControl;
299    protected TabPage runPage;
300    protected TabPage constraintPage;
301    protected RunCollectionConstraintCollectionView runCollectionConstraintCollectionView;
302    protected Button clearButton;
303  }
304}
Note: See TracBrowser for help on using the repository browser.