[3742] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3742] | 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 |
|
---|
[5768] | 22 | using System.Windows.Forms;
|
---|
[3742] | 23 | namespace HeuristicLab.Core.Views {
|
---|
[2655] | 24 | partial class ParameterCollectionView {
|
---|
| 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();
|
---|
[5768] | 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 | this.itemsListView.ContextMenuStrip = this.itemsListViewContextMenuStrip;
|
---|
| 57 | this.itemsListView.TabIndex = 6;
|
---|
| 58 | //
|
---|
| 59 | // showHiddenParametersCheckBox
|
---|
| 60 | //
|
---|
| 61 | this.showHiddenParametersCheckBox.Appearance = System.Windows.Forms.Appearance.Button;
|
---|
| 62 | this.showHiddenParametersCheckBox.Checked = false;
|
---|
| 63 | this.showHiddenParametersCheckBox.CheckState = System.Windows.Forms.CheckState.Unchecked;
|
---|
| 64 | this.showHiddenParametersCheckBox.Image = HeuristicLab.Common.Resources.VSImageLibrary.HiddenField;
|
---|
| 65 | this.showHiddenParametersCheckBox.Location = new System.Drawing.Point(153, 3);
|
---|
| 66 | this.showHiddenParametersCheckBox.Name = "showHiddenParametersCheckBox";
|
---|
| 67 | this.showHiddenParametersCheckBox.Size = new System.Drawing.Size(24, 24);
|
---|
| 68 | this.showHiddenParametersCheckBox.TabIndex = 5;
|
---|
| 69 | this.toolTip.SetToolTip(this.showHiddenParametersCheckBox, "Show Hidden Parameters");
|
---|
| 70 | this.showHiddenParametersCheckBox.UseVisualStyleBackColor = true;
|
---|
| 71 | this.showHiddenParametersCheckBox.CheckedChanged += new System.EventHandler(showHiddenParametersCheckBox_CheckedChanged);
|
---|
| 72 | //
|
---|
| 73 | // itemsListViewContextMenuStrip
|
---|
| 74 | //
|
---|
| 75 | this.itemsListViewContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
---|
| 76 | this.showHideParametersToolStripMenuItem});
|
---|
| 77 | this.itemsListViewContextMenuStrip.Name = "itemsListViewContextMenuStrip";
|
---|
| 78 | this.itemsListViewContextMenuStrip.Size = new System.Drawing.Size(161, 26);
|
---|
| 79 | this.itemsListViewContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(itemsListViewContextMenuStrip_Opening);
|
---|
| 80 | //
|
---|
| 81 | // showHideParametersToolStripMenuItem
|
---|
| 82 | //
|
---|
| 83 | this.showHideParametersToolStripMenuItem.Name = "showHideParametersToolStripMenuItem";
|
---|
| 84 | this.showHideParametersToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
|
---|
| 85 | this.showHideParametersToolStripMenuItem.Text = "Show/Hide Parameters";
|
---|
| 86 | this.showHideParametersToolStripMenuItem.Click += new System.EventHandler(showHideParametersToolStripMenuItem_Click);
|
---|
| 87 | //
|
---|
| 88 | // ParameterCollectionView
|
---|
| 89 | //
|
---|
[7967] | 90 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
[5768] | 91 | this.Name = "ParameterCollectionView";
|
---|
| 92 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
| 93 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
| 94 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
|
---|
| 95 | this.splitContainer.ResumeLayout(false);
|
---|
| 96 | this.detailsGroupBox.ResumeLayout(false);
|
---|
| 97 | this.itemsGroupBox.ResumeLayout(false);
|
---|
| 98 | this.itemsListViewContextMenuStrip.ResumeLayout(false);
|
---|
| 99 | this.ResumeLayout(false);
|
---|
[2655] | 100 | }
|
---|
| 101 |
|
---|
| 102 | #endregion
|
---|
[5768] | 103 |
|
---|
| 104 | protected CheckBox showHiddenParametersCheckBox;
|
---|
| 105 | protected ContextMenuStrip itemsListViewContextMenuStrip;
|
---|
| 106 | protected ToolStripMenuItem showHideParametersToolStripMenuItem;
|
---|
[2655] | 107 | }
|
---|
| 108 | }
|
---|