Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/20/11 02:36:00 (13 years ago)
Author:
swagner
Message:

Enabled hiding of parameters (#1377)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Core.Views/3.3/ParameterCollectionView.Designer.cs

    r5445 r5768  
    2020#endregion
    2121
     22using System.Windows.Forms;
    2223namespace HeuristicLab.Core.Views {
    2324  partial class ParameterCollectionView {
     
    3536    private void InitializeComponent() {
    3637      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      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      //
    3790      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     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);
    38100    }
    39101
    40102    #endregion
     103
     104    protected CheckBox showHiddenParametersCheckBox;
     105    protected ContextMenuStrip itemsListViewContextMenuStrip;
     106    protected ToolStripMenuItem showHideParametersToolStripMenuItem;
    41107  }
    42108}
Note: See TracChangeset for help on using the changeset viewer.