Free cookie consent management tool by TermsFeed Policy Generator

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

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

corrected namespaces and removed resources files in HL 3.3 solution (ticket #893)

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