Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ItemTreeViews/3.3/Views/ParameterCollectionTreeView.designer.cs @ 14335

Last change on this file since 14335 was 14335, checked in by bwerth, 8 years ago

#2684 initial commit of TreeView

File size: 5.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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.Windows.Forms;
23namespace HeuristicLab.ItemTreeViews.Views {
24  partial class ParameterCollectionTreeView {
25    /// <summary>
26    /// Required designer variable.
27    /// </summary>
28    private System.ComponentModel.IContainer components = null;
29
30    #region Component Designer generated code
31
32    /// <summary>
33    /// Required method for Designer support - do not modify
34    /// the contents of this method with the code editor.
35    /// </summary>
36    private void InitializeComponent() {
37      components = new System.ComponentModel.Container();
38      this.showHiddenParametersCheckBox = new System.Windows.Forms.CheckBox();
39      this.itemsListViewContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
40      this.showHideParametersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
41      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
42      this.splitContainer.Panel1.SuspendLayout();
43      this.splitContainer.Panel2.SuspendLayout();
44      this.splitContainer.SuspendLayout();
45      this.detailsGroupBox.SuspendLayout();
46      this.itemsGroupBox.SuspendLayout();
47      this.itemsListViewContextMenuStrip.SuspendLayout();
48      this.SuspendLayout();
49      //
50      // splitContainer.Panel1
51      //
52      this.splitContainer.Panel1.Controls.Add(this.showHiddenParametersCheckBox);
53      //
54      // itemsListView
55      //
56      //
57      // showHiddenParametersCheckBox
58      //
59      this.showHiddenParametersCheckBox.Appearance = System.Windows.Forms.Appearance.Button;
60      this.showHiddenParametersCheckBox.Checked = false;
61      this.showHiddenParametersCheckBox.CheckState = System.Windows.Forms.CheckState.Unchecked;
62      this.showHiddenParametersCheckBox.Image = HeuristicLab.Common.Resources.VSImageLibrary.HiddenField;
63      this.showHiddenParametersCheckBox.Location = new System.Drawing.Point(153, 3);
64      this.showHiddenParametersCheckBox.Name = "showHiddenParametersCheckBox";
65      this.showHiddenParametersCheckBox.Size = new System.Drawing.Size(24, 24);
66      this.showHiddenParametersCheckBox.TabIndex = 5;
67      this.toolTip.SetToolTip(this.showHiddenParametersCheckBox, "Show Hidden Parameters");
68      this.showHiddenParametersCheckBox.UseVisualStyleBackColor = true;
69      this.showHiddenParametersCheckBox.CheckedChanged += new System.EventHandler(showHiddenParametersCheckBox_CheckedChanged);
70      //
71      // itemsListViewContextMenuStrip
72      //
73      this.itemsListViewContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
74            this.showHideParametersToolStripMenuItem});
75      this.itemsListViewContextMenuStrip.Name = "itemsListViewContextMenuStrip";
76      this.itemsListViewContextMenuStrip.Size = new System.Drawing.Size(161, 26);
77      this.itemsListViewContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(itemsTreeViewContextMenuStrip_Opening);
78      //
79      // showHideParametersToolStripMenuItem
80      //
81      this.showHideParametersToolStripMenuItem.Name = "showHideParametersToolStripMenuItem";
82      this.showHideParametersToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
83      this.showHideParametersToolStripMenuItem.Text = "Show/Hide Parameters";
84      this.showHideParametersToolStripMenuItem.Click += new System.EventHandler(showHideParametersToolStripMenuItem_Click);
85      //
86      // ParameterCollectionTreeView
87      //
88      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
89      this.Name = "ParameterCollectionView";
90      this.splitContainer.Panel1.ResumeLayout(false);
91      this.splitContainer.Panel2.ResumeLayout(false);
92      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
93      this.splitContainer.ResumeLayout(false);
94      this.detailsGroupBox.ResumeLayout(false);
95      this.itemsGroupBox.ResumeLayout(false);
96      this.itemsListViewContextMenuStrip.ResumeLayout(false);
97      this.ResumeLayout(false);
98    }
99
100    #endregion
101
102    protected CheckBox showHiddenParametersCheckBox;
103    protected ContextMenuStrip itemsListViewContextMenuStrip;
104    protected ToolStripMenuItem showHideParametersToolStripMenuItem;
105  }
106}
Note: See TracBrowser for help on using the repository browser.