1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 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 |
|
---|
22 | namespace HeuristicLab.Optimizer {
|
---|
23 | partial class NewItemDialog {
|
---|
24 | /// <summary>
|
---|
25 | /// Required designer variable.
|
---|
26 | /// </summary>
|
---|
27 | private System.ComponentModel.IContainer components = null;
|
---|
28 |
|
---|
29 | /// <summary>
|
---|
30 | /// Clean up any resources being used.
|
---|
31 | /// </summary>
|
---|
32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
33 | protected override void Dispose(bool disposing) {
|
---|
34 | if (disposing && (components != null)) {
|
---|
35 | components.Dispose();
|
---|
36 | }
|
---|
37 | base.Dispose(disposing);
|
---|
38 | }
|
---|
39 |
|
---|
40 | #region Windows Form Designer generated code
|
---|
41 |
|
---|
42 | /// <summary>
|
---|
43 | /// Required method for Designer support - do not modify
|
---|
44 | /// the contents of this method with the code editor.
|
---|
45 | /// </summary>
|
---|
46 | private void InitializeComponent() {
|
---|
47 | this.components = new System.ComponentModel.Container();
|
---|
48 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NewItemDialog));
|
---|
49 | this.okButton = new System.Windows.Forms.Button();
|
---|
50 | this.cancelButton = new System.Windows.Forms.Button();
|
---|
51 | this.toolTip = new System.Windows.Forms.ToolTip(this.components);
|
---|
52 | this.searchLabel = new System.Windows.Forms.Label();
|
---|
53 | this.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
54 | this.availableItemsGroupBox = new System.Windows.Forms.GroupBox();
|
---|
55 | this.searchTextBox = new System.Windows.Forms.TextBox();
|
---|
56 | this.typesTreeView = new System.Windows.Forms.TreeView();
|
---|
57 | this.imageList = new System.Windows.Forms.ImageList(this.components);
|
---|
58 | this.descriptionGroupBox = new System.Windows.Forms.GroupBox();
|
---|
59 | this.versionTextBox = new System.Windows.Forms.TextBox();
|
---|
60 | this.pluginTextBox = new System.Windows.Forms.TextBox();
|
---|
61 | this.descriptionTextBox = new System.Windows.Forms.TextBox();
|
---|
62 | this.expandAllButton = new System.Windows.Forms.Button();
|
---|
63 | this.collapseAllButton = new System.Windows.Forms.Button();
|
---|
64 | this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
|
---|
65 | this.expandToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
66 | this.expandAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
67 | this.collapseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
68 | this.collapseAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
---|
69 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
|
---|
70 | this.splitContainer.Panel1.SuspendLayout();
|
---|
71 | this.splitContainer.Panel2.SuspendLayout();
|
---|
72 | this.splitContainer.SuspendLayout();
|
---|
73 | this.availableItemsGroupBox.SuspendLayout();
|
---|
74 | this.descriptionGroupBox.SuspendLayout();
|
---|
75 | this.contextMenuStrip.SuspendLayout();
|
---|
76 | this.SuspendLayout();
|
---|
77 | //
|
---|
78 | // okButton
|
---|
79 | //
|
---|
80 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
81 | this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
|
---|
82 | this.okButton.Enabled = false;
|
---|
83 | this.okButton.Location = new System.Drawing.Point(456, 502);
|
---|
84 | this.okButton.Name = "okButton";
|
---|
85 | this.okButton.Size = new System.Drawing.Size(75, 23);
|
---|
86 | this.okButton.TabIndex = 1;
|
---|
87 | this.okButton.Text = "&OK";
|
---|
88 | this.okButton.UseVisualStyleBackColor = true;
|
---|
89 | this.okButton.Click += new System.EventHandler(this.okButton_Click);
|
---|
90 | //
|
---|
91 | // cancelButton
|
---|
92 | //
|
---|
93 | this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
94 | this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
95 | this.cancelButton.Location = new System.Drawing.Point(537, 502);
|
---|
96 | this.cancelButton.Name = "cancelButton";
|
---|
97 | this.cancelButton.Size = new System.Drawing.Size(75, 23);
|
---|
98 | this.cancelButton.TabIndex = 2;
|
---|
99 | this.cancelButton.Text = "&Cancel";
|
---|
100 | this.cancelButton.UseVisualStyleBackColor = true;
|
---|
101 | //
|
---|
102 | // searchLabel
|
---|
103 | //
|
---|
104 | this.searchLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Zoom;
|
---|
105 | this.searchLabel.Location = new System.Drawing.Point(6, 17);
|
---|
106 | this.searchLabel.Name = "searchLabel";
|
---|
107 | this.searchLabel.Size = new System.Drawing.Size(20, 20);
|
---|
108 | this.searchLabel.TabIndex = 0;
|
---|
109 | this.toolTip.SetToolTip(this.searchLabel, "Enter string to search for items");
|
---|
110 | //
|
---|
111 | // splitContainer
|
---|
112 | //
|
---|
113 | this.splitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
114 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
115 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
116 | this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
|
---|
117 | this.splitContainer.Location = new System.Drawing.Point(12, 12);
|
---|
118 | this.splitContainer.Name = "splitContainer";
|
---|
119 | this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
|
---|
120 | //
|
---|
121 | // splitContainer.Panel1
|
---|
122 | //
|
---|
123 | this.splitContainer.Panel1.Controls.Add(this.availableItemsGroupBox);
|
---|
124 | //
|
---|
125 | // splitContainer.Panel2
|
---|
126 | //
|
---|
127 | this.splitContainer.Panel2.Controls.Add(this.descriptionGroupBox);
|
---|
128 | this.splitContainer.Size = new System.Drawing.Size(600, 484);
|
---|
129 | this.splitContainer.SplitterDistance = 373;
|
---|
130 | this.splitContainer.TabIndex = 0;
|
---|
131 | this.splitContainer.TabStop = false;
|
---|
132 | //
|
---|
133 | // availableItemsGroupBox
|
---|
134 | //
|
---|
135 | this.availableItemsGroupBox.Controls.Add(this.searchLabel);
|
---|
136 | this.availableItemsGroupBox.Controls.Add(this.searchTextBox);
|
---|
137 | this.availableItemsGroupBox.Controls.Add(this.typesTreeView);
|
---|
138 | this.availableItemsGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
139 | this.availableItemsGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
140 | this.availableItemsGroupBox.Name = "availableItemsGroupBox";
|
---|
141 | this.availableItemsGroupBox.Padding = new System.Windows.Forms.Padding(3, 15, 3, 3);
|
---|
142 | this.availableItemsGroupBox.Size = new System.Drawing.Size(600, 373);
|
---|
143 | this.availableItemsGroupBox.TabIndex = 5;
|
---|
144 | this.availableItemsGroupBox.TabStop = false;
|
---|
145 | this.availableItemsGroupBox.Text = "Available Items";
|
---|
146 | //
|
---|
147 | // searchTextBox
|
---|
148 | //
|
---|
149 | this.searchTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
150 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
151 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
152 | this.searchTextBox.Location = new System.Drawing.Point(32, 17);
|
---|
153 | this.searchTextBox.Name = "searchTextBox";
|
---|
154 | this.searchTextBox.Size = new System.Drawing.Size(562, 20);
|
---|
155 | this.searchTextBox.TabIndex = 1;
|
---|
156 | this.searchTextBox.TextChanged += new System.EventHandler(this.searchTextBox_TextChanged);
|
---|
157 | //
|
---|
158 | // typesTreeView
|
---|
159 | //
|
---|
160 | this.typesTreeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
161 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
162 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
163 | this.typesTreeView.HideSelection = false;
|
---|
164 | this.typesTreeView.ImageIndex = 0;
|
---|
165 | this.typesTreeView.ImageList = this.imageList;
|
---|
166 | this.typesTreeView.Location = new System.Drawing.Point(6, 41);
|
---|
167 | this.typesTreeView.Name = "typesTreeView";
|
---|
168 | this.typesTreeView.SelectedImageIndex = 0;
|
---|
169 | this.typesTreeView.ShowNodeToolTips = true;
|
---|
170 | this.typesTreeView.Size = new System.Drawing.Size(588, 326);
|
---|
171 | this.typesTreeView.TabIndex = 2;
|
---|
172 | this.typesTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.itemsTreeView_AfterSelect);
|
---|
173 | this.typesTreeView.VisibleChanged += new System.EventHandler(this.itemsTreeView_VisibleChanged);
|
---|
174 | this.typesTreeView.DoubleClick += new System.EventHandler(this.itemTreeView_DoubleClick);
|
---|
175 | this.typesTreeView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.typesTreeView_MouseDown);
|
---|
176 | //
|
---|
177 | // imageList
|
---|
178 | //
|
---|
179 | this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
|
---|
180 | this.imageList.ImageSize = new System.Drawing.Size(16, 16);
|
---|
181 | this.imageList.TransparentColor = System.Drawing.Color.Transparent;
|
---|
182 | //
|
---|
183 | // descriptionGroupBox
|
---|
184 | //
|
---|
185 | this.descriptionGroupBox.Controls.Add(this.versionTextBox);
|
---|
186 | this.descriptionGroupBox.Controls.Add(this.pluginTextBox);
|
---|
187 | this.descriptionGroupBox.Controls.Add(this.descriptionTextBox);
|
---|
188 | this.descriptionGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
189 | this.descriptionGroupBox.Location = new System.Drawing.Point(0, 0);
|
---|
190 | this.descriptionGroupBox.Name = "descriptionGroupBox";
|
---|
191 | this.descriptionGroupBox.Size = new System.Drawing.Size(600, 107);
|
---|
192 | this.descriptionGroupBox.TabIndex = 1;
|
---|
193 | this.descriptionGroupBox.TabStop = false;
|
---|
194 | this.descriptionGroupBox.Text = "Description";
|
---|
195 | //
|
---|
196 | // versionTextBox
|
---|
197 | //
|
---|
198 | this.versionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
---|
199 | this.versionTextBox.Location = new System.Drawing.Point(444, 20);
|
---|
200 | this.versionTextBox.Name = "versionTextBox";
|
---|
201 | this.versionTextBox.ReadOnly = true;
|
---|
202 | this.versionTextBox.Size = new System.Drawing.Size(150, 20);
|
---|
203 | this.versionTextBox.TabIndex = 0;
|
---|
204 | this.versionTextBox.TabStop = false;
|
---|
205 | //
|
---|
206 | // pluginTextBox
|
---|
207 | //
|
---|
208 | this.pluginTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
209 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
210 | this.pluginTextBox.Location = new System.Drawing.Point(6, 20);
|
---|
211 | this.pluginTextBox.Name = "pluginTextBox";
|
---|
212 | this.pluginTextBox.ReadOnly = true;
|
---|
213 | this.pluginTextBox.Size = new System.Drawing.Size(432, 20);
|
---|
214 | this.pluginTextBox.TabIndex = 0;
|
---|
215 | this.pluginTextBox.TabStop = false;
|
---|
216 | //
|
---|
217 | // descriptionTextBox
|
---|
218 | //
|
---|
219 | this.descriptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
220 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
221 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
222 | this.descriptionTextBox.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
---|
223 | this.descriptionTextBox.Location = new System.Drawing.Point(6, 46);
|
---|
224 | this.descriptionTextBox.Multiline = true;
|
---|
225 | this.descriptionTextBox.Name = "descriptionTextBox";
|
---|
226 | this.descriptionTextBox.ReadOnly = true;
|
---|
227 | this.descriptionTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
---|
228 | this.descriptionTextBox.Size = new System.Drawing.Size(588, 55);
|
---|
229 | this.descriptionTextBox.TabIndex = 0;
|
---|
230 | this.descriptionTextBox.TabStop = false;
|
---|
231 | //
|
---|
232 | // expandAllButton
|
---|
233 | //
|
---|
234 | this.expandAllButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
235 | this.expandAllButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.ZoomIn;
|
---|
236 | this.expandAllButton.Location = new System.Drawing.Point(12, 502);
|
---|
237 | this.expandAllButton.Name = "expandAllButton";
|
---|
238 | this.expandAllButton.Size = new System.Drawing.Size(23, 23);
|
---|
239 | this.expandAllButton.TabIndex = 0;
|
---|
240 | this.expandAllButton.TabStop = false;
|
---|
241 | this.expandAllButton.UseVisualStyleBackColor = true;
|
---|
242 | this.expandAllButton.Click += new System.EventHandler(this.expandAllButton_Click);
|
---|
243 | //
|
---|
244 | // collapseAllButton
|
---|
245 | //
|
---|
246 | this.collapseAllButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
---|
247 | this.collapseAllButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.ZoomOut;
|
---|
248 | this.collapseAllButton.Location = new System.Drawing.Point(41, 502);
|
---|
249 | this.collapseAllButton.Name = "collapseAllButton";
|
---|
250 | this.collapseAllButton.Size = new System.Drawing.Size(23, 23);
|
---|
251 | this.collapseAllButton.TabIndex = 0;
|
---|
252 | this.collapseAllButton.TabStop = false;
|
---|
253 | this.collapseAllButton.UseVisualStyleBackColor = true;
|
---|
254 | this.collapseAllButton.Click += new System.EventHandler(this.collapseAllButton_Click);
|
---|
255 | //
|
---|
256 | // contextMenuStrip
|
---|
257 | //
|
---|
258 | this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
259 | this.expandToolStripMenuItem,
|
---|
260 | this.expandAllToolStripMenuItem,
|
---|
261 | this.collapseToolStripMenuItem,
|
---|
262 | this.collapseAllToolStripMenuItem});
|
---|
263 | this.contextMenuStrip.Name = "contextMenuStrip";
|
---|
264 | this.contextMenuStrip.Size = new System.Drawing.Size(153, 114);
|
---|
265 | //
|
---|
266 | // expandToolStripMenuItem
|
---|
267 | //
|
---|
268 | this.expandToolStripMenuItem.Name = "expandToolStripMenuItem";
|
---|
269 | this.expandToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
---|
270 | this.expandToolStripMenuItem.Text = "Expand";
|
---|
271 | this.expandToolStripMenuItem.Click += new System.EventHandler(this.expandToolStripMenuItem_Click);
|
---|
272 | //
|
---|
273 | // expandAllToolStripMenuItem
|
---|
274 | //
|
---|
275 | this.expandAllToolStripMenuItem.Name = "expandAllToolStripMenuItem";
|
---|
276 | this.expandAllToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
---|
277 | this.expandAllToolStripMenuItem.Text = "Expand All";
|
---|
278 | this.expandAllToolStripMenuItem.Click += new System.EventHandler(this.expandAllToolStripMenuItem_Click);
|
---|
279 | //
|
---|
280 | // collapseToolStripMenuItem
|
---|
281 | //
|
---|
282 | this.collapseToolStripMenuItem.Name = "collapseToolStripMenuItem";
|
---|
283 | this.collapseToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
---|
284 | this.collapseToolStripMenuItem.Text = "Collapse";
|
---|
285 | this.collapseToolStripMenuItem.Click += new System.EventHandler(this.collapseToolStripMenuItem_Click);
|
---|
286 | //
|
---|
287 | // collapseAllToolStripMenuItem
|
---|
288 | //
|
---|
289 | this.collapseAllToolStripMenuItem.Name = "collapseAllToolStripMenuItem";
|
---|
290 | this.collapseAllToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
---|
291 | this.collapseAllToolStripMenuItem.Text = "Collapse All";
|
---|
292 | this.collapseAllToolStripMenuItem.Click += new System.EventHandler(this.collapseAllToolStripMenuItem_Click);
|
---|
293 | //
|
---|
294 | // NewItemDialog
|
---|
295 | //
|
---|
296 | this.AcceptButton = this.okButton;
|
---|
297 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
298 | this.CancelButton = this.cancelButton;
|
---|
299 | this.ClientSize = new System.Drawing.Size(624, 537);
|
---|
300 | this.Controls.Add(this.splitContainer);
|
---|
301 | this.Controls.Add(this.cancelButton);
|
---|
302 | this.Controls.Add(this.okButton);
|
---|
303 | this.Controls.Add(this.expandAllButton);
|
---|
304 | this.Controls.Add(this.collapseAllButton);
|
---|
305 | this.MaximizeBox = false;
|
---|
306 | this.MinimizeBox = false;
|
---|
307 | this.Name = "NewItemDialog";
|
---|
308 | this.ShowIcon = false;
|
---|
309 | this.ShowInTaskbar = false;
|
---|
310 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
311 | this.Text = "New Item";
|
---|
312 | this.TopMost = true;
|
---|
313 | this.Load += new System.EventHandler(this.NewItemDialog_Load);
|
---|
314 | this.Shown += new System.EventHandler(this.NewItemDialog_Shown);
|
---|
315 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
316 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
317 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
---|
318 | this.splitContainer.ResumeLayout(false);
|
---|
319 | this.availableItemsGroupBox.ResumeLayout(false);
|
---|
320 | this.availableItemsGroupBox.PerformLayout();
|
---|
321 | this.descriptionGroupBox.ResumeLayout(false);
|
---|
322 | this.descriptionGroupBox.PerformLayout();
|
---|
323 | this.contextMenuStrip.ResumeLayout(false);
|
---|
324 | this.ResumeLayout(false);
|
---|
325 |
|
---|
326 | }
|
---|
327 |
|
---|
328 | #endregion
|
---|
329 |
|
---|
330 | private System.Windows.Forms.Button okButton;
|
---|
331 | private System.Windows.Forms.Button cancelButton;
|
---|
332 | private System.Windows.Forms.ToolTip toolTip;
|
---|
333 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
334 | private System.Windows.Forms.TextBox descriptionTextBox;
|
---|
335 | private System.Windows.Forms.Label searchLabel;
|
---|
336 | private System.Windows.Forms.TextBox searchTextBox;
|
---|
337 | private System.Windows.Forms.TreeView typesTreeView;
|
---|
338 | private System.Windows.Forms.ImageList imageList;
|
---|
339 | private System.Windows.Forms.Button expandAllButton;
|
---|
340 | private System.Windows.Forms.Button collapseAllButton;
|
---|
341 | private System.Windows.Forms.GroupBox availableItemsGroupBox;
|
---|
342 | private System.Windows.Forms.GroupBox descriptionGroupBox;
|
---|
343 | private System.Windows.Forms.TextBox versionTextBox;
|
---|
344 | private System.Windows.Forms.TextBox pluginTextBox;
|
---|
345 | private System.Windows.Forms.ContextMenuStrip contextMenuStrip;
|
---|
346 | private System.Windows.Forms.ToolStripMenuItem expandToolStripMenuItem;
|
---|
347 | private System.Windows.Forms.ToolStripMenuItem expandAllToolStripMenuItem;
|
---|
348 | private System.Windows.Forms.ToolStripMenuItem collapseToolStripMenuItem;
|
---|
349 | private System.Windows.Forms.ToolStripMenuItem collapseAllToolStripMenuItem;
|
---|
350 | }
|
---|
351 | } |
---|