Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization.Views/3.3/ExperimentTreeView.Designer.cs @ 6513

Last change on this file since 6513 was 6496, checked in by mkommend, 13 years ago

#1555: Added functionality to open new view on double click.

File size: 12.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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
22namespace HeuristicLab.Optimization.Views {
23  partial class ExperimentTreeView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28    #region Component Designer generated code
29
30    /// <summary>
31    /// Required method for Designer support - do not modify
32    /// the contents of this method with the code editor.
33    /// </summary>
34    private void InitializeComponent() {
35      this.components = new System.ComponentModel.Container();
36      this.optimizersGroupBox = new System.Windows.Forms.GroupBox();
37      this.splitContainer = new System.Windows.Forms.SplitContainer();
38      this.showDetailsCheckBox = new System.Windows.Forms.CheckBox();
39      this.removeButton = new System.Windows.Forms.Button();
40      this.moveUpButton = new System.Windows.Forms.Button();
41      this.moveDownButton = new System.Windows.Forms.Button();
42      this.addButton = new System.Windows.Forms.Button();
43      this.optimizerTreeView = new System.Windows.Forms.TreeView();
44      this.imageList = new System.Windows.Forms.ImageList(this.components);
45      this.detailsGroupBox = new System.Windows.Forms.GroupBox();
46      this.detailsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
47      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
48      this.optimizersGroupBox.SuspendLayout();
49      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
50      this.splitContainer.Panel1.SuspendLayout();
51      this.splitContainer.Panel2.SuspendLayout();
52      this.splitContainer.SuspendLayout();
53      this.detailsGroupBox.SuspendLayout();
54      this.SuspendLayout();
55      //
56      // optimizersGroupBox
57      //
58      this.optimizersGroupBox.Controls.Add(this.splitContainer);
59      this.optimizersGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
60      this.optimizersGroupBox.Location = new System.Drawing.Point(0, 0);
61      this.optimizersGroupBox.Name = "optimizersGroupBox";
62      this.optimizersGroupBox.Size = new System.Drawing.Size(627, 458);
63      this.optimizersGroupBox.TabIndex = 16;
64      this.optimizersGroupBox.TabStop = false;
65      this.optimizersGroupBox.Text = "Optimizers";
66      //
67      // splitContainer
68      //
69      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
70      this.splitContainer.Location = new System.Drawing.Point(3, 16);
71      this.splitContainer.Name = "splitContainer";
72      //
73      // splitContainer.Panel1
74      //
75      this.splitContainer.Panel1.Controls.Add(this.showDetailsCheckBox);
76      this.splitContainer.Panel1.Controls.Add(this.removeButton);
77      this.splitContainer.Panel1.Controls.Add(this.moveUpButton);
78      this.splitContainer.Panel1.Controls.Add(this.moveDownButton);
79      this.splitContainer.Panel1.Controls.Add(this.addButton);
80      this.splitContainer.Panel1.Controls.Add(this.optimizerTreeView);
81      //
82      // splitContainer.Panel2
83      //
84      this.splitContainer.Panel2.Controls.Add(this.detailsGroupBox);
85      this.splitContainer.Size = new System.Drawing.Size(621, 439);
86      this.splitContainer.SplitterDistance = 198;
87      this.splitContainer.TabIndex = 0;
88      //
89      // showDetailsCheckBox
90      //
91      this.showDetailsCheckBox.Appearance = System.Windows.Forms.Appearance.Button;
92      this.showDetailsCheckBox.Checked = true;
93      this.showDetailsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
94      this.showDetailsCheckBox.Image = HeuristicLab.Common.Resources.VSImageLibrary.Properties;
95      this.showDetailsCheckBox.Location = new System.Drawing.Point(124, 4);
96      this.showDetailsCheckBox.Name = "showDetailsCheckBox";
97      this.showDetailsCheckBox.Size = new System.Drawing.Size(24, 24);
98      this.showDetailsCheckBox.TabIndex = 15;
99      this.toolTip.SetToolTip(this.showDetailsCheckBox, "Show/Hide Details");
100      this.showDetailsCheckBox.UseVisualStyleBackColor = true;
101      this.showDetailsCheckBox.CheckedChanged += new System.EventHandler(this.showDetailsCheckBox_CheckedChanged);
102      //
103      // removeButton
104      //
105      this.removeButton.Enabled = false;
106      this.removeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
107      this.removeButton.Location = new System.Drawing.Point(94, 4);
108      this.removeButton.Name = "removeButton";
109      this.removeButton.Size = new System.Drawing.Size(24, 24);
110      this.removeButton.TabIndex = 14;
111      this.toolTip.SetToolTip(this.removeButton, "Remove");
112      this.removeButton.UseVisualStyleBackColor = true;
113      this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
114      //
115      // moveUpButton
116      //
117      this.moveUpButton.Enabled = false;
118      this.moveUpButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.ArrowUp;
119      this.moveUpButton.Location = new System.Drawing.Point(34, 4);
120      this.moveUpButton.Name = "moveUpButton";
121      this.moveUpButton.Size = new System.Drawing.Size(24, 24);
122      this.moveUpButton.TabIndex = 12;
123      this.toolTip.SetToolTip(this.moveUpButton, "Move Up");
124      this.moveUpButton.UseVisualStyleBackColor = true;
125      this.moveUpButton.Click += new System.EventHandler(this.moveUpButton_Click);
126      //
127      // moveDownButton
128      //
129      this.moveDownButton.Enabled = false;
130      this.moveDownButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.ArrowDown;
131      this.moveDownButton.Location = new System.Drawing.Point(64, 4);
132      this.moveDownButton.Name = "moveDownButton";
133      this.moveDownButton.Size = new System.Drawing.Size(24, 24);
134      this.moveDownButton.TabIndex = 13;
135      this.toolTip.SetToolTip(this.moveDownButton, "Move Down");
136      this.moveDownButton.UseVisualStyleBackColor = true;
137      this.moveDownButton.Click += new System.EventHandler(this.moveDownButton_Click);
138      //
139      // addButton
140      //
141      this.addButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Add;
142      this.addButton.Location = new System.Drawing.Point(4, 4);
143      this.addButton.Name = "addButton";
144      this.addButton.Size = new System.Drawing.Size(24, 24);
145      this.addButton.TabIndex = 11;
146      this.toolTip.SetToolTip(this.addButton, "Add");
147      this.addButton.UseVisualStyleBackColor = true;
148      this.addButton.Click += new System.EventHandler(this.addButton_Click);
149      //
150      // optimizerTreeView
151      //
152      this.optimizerTreeView.AllowDrop = true;
153      this.optimizerTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
154            | System.Windows.Forms.AnchorStyles.Left)
155            | System.Windows.Forms.AnchorStyles.Right)));
156      this.optimizerTreeView.HideSelection = false;
157      this.optimizerTreeView.ImageIndex = 0;
158      this.optimizerTreeView.ImageList = this.imageList;
159      this.optimizerTreeView.Location = new System.Drawing.Point(4, 34);
160      this.optimizerTreeView.Name = "optimizerTreeView";
161      this.optimizerTreeView.SelectedImageIndex = 0;
162      this.optimizerTreeView.Size = new System.Drawing.Size(191, 402);
163      this.optimizerTreeView.TabIndex = 10;
164      this.optimizerTreeView.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.optimizerTreeView_ItemDrag);
165      this.optimizerTreeView.DragDrop += new System.Windows.Forms.DragEventHandler(this.optimizerTreeView_DragDrop);
166      this.optimizerTreeView.DragEnter += new System.Windows.Forms.DragEventHandler(this.optimizerTreeView_DragEnter);
167      this.optimizerTreeView.DragOver += new System.Windows.Forms.DragEventHandler(this.optimizerTreeView_DragOver);
168      this.optimizerTreeView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.optimizerTreeView_KeyDown);
169      this.optimizerTreeView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.optimizerTreeView_MouseDown);
170      this.optimizerTreeView.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.optimizerTreeview_NodeMouseClick);
171      this.optimizerTreeView.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(optimizerTreeView_NodeMouseDoubleClick);
172      //
173      // imageList
174      //
175      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
176      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
177      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
178      //
179      // detailsGroupBox
180      //
181      this.detailsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
182            | System.Windows.Forms.AnchorStyles.Left)
183            | System.Windows.Forms.AnchorStyles.Right)));
184      this.detailsGroupBox.Controls.Add(this.detailsViewHost);
185      this.detailsGroupBox.Location = new System.Drawing.Point(3, 34);
186      this.detailsGroupBox.Name = "detailsGroupBox";
187      this.detailsGroupBox.Size = new System.Drawing.Size(413, 405);
188      this.detailsGroupBox.TabIndex = 1;
189      this.detailsGroupBox.TabStop = false;
190      this.detailsGroupBox.Text = "Details";
191      //
192      // detailsViewHost
193      //
194      this.detailsViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
195            | System.Windows.Forms.AnchorStyles.Left)
196            | System.Windows.Forms.AnchorStyles.Right)));
197      this.detailsViewHost.Caption = "View";
198      this.detailsViewHost.Content = null;
199      this.detailsViewHost.Enabled = false;
200      this.detailsViewHost.Location = new System.Drawing.Point(6, 19);
201      this.detailsViewHost.Name = "detailsViewHost";
202      this.detailsViewHost.ReadOnly = false;
203      this.detailsViewHost.Size = new System.Drawing.Size(401, 380);
204      this.detailsViewHost.TabIndex = 0;
205      this.detailsViewHost.ViewsLabelVisible = true;
206      this.detailsViewHost.ViewType = null;
207      //
208      // ExperimentTreeView
209      //
210      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
211      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
212      this.Controls.Add(this.optimizersGroupBox);
213      this.Name = "ExperimentTreeView";
214      this.Size = new System.Drawing.Size(627, 458);
215      this.optimizersGroupBox.ResumeLayout(false);
216      this.splitContainer.Panel1.ResumeLayout(false);
217      this.splitContainer.Panel2.ResumeLayout(false);
218      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
219      this.splitContainer.ResumeLayout(false);
220      this.detailsGroupBox.ResumeLayout(false);
221      this.ResumeLayout(false);
222
223    }
224    #endregion
225
226    private System.Windows.Forms.GroupBox optimizersGroupBox;
227    private System.Windows.Forms.SplitContainer splitContainer;
228    private System.Windows.Forms.TreeView optimizerTreeView;
229    private System.Windows.Forms.GroupBox detailsGroupBox;
230    private MainForm.WindowsForms.ViewHost detailsViewHost;
231    private System.Windows.Forms.ToolTip toolTip;
232    private System.Windows.Forms.CheckBox showDetailsCheckBox;
233    private System.Windows.Forms.Button removeButton;
234    private System.Windows.Forms.Button moveUpButton;
235    private System.Windows.Forms.Button moveDownButton;
236    private System.Windows.Forms.Button addButton;
237    private System.Windows.Forms.ImageList imageList;
238
239  }
240}
Note: See TracBrowser for help on using the repository browser.