Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/27/10 03:10:17 (14 years ago)
Author:
swagner
Message:

Enabled users to choose whether a parameter should be collected in each run or not (#1113)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Parameters.Views/3.3/ConstrainedValueParameterView.Designer.cs

    r3281 r4332  
    4646    private void InitializeComponent() {
    4747      this.valueGroupBox = new System.Windows.Forms.GroupBox();
     48      this.showInRunCheckBox = new System.Windows.Forms.CheckBox();
    4849      this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    4950      this.valueComboBox = new System.Windows.Forms.ComboBox();
     
    5152      this.valueGroupBox.SuspendLayout();
    5253      this.SuspendLayout();
    53       //
    54       // dataTypeLabel
    55       //
    56       this.dataTypeLabel.Location = new System.Drawing.Point(3, 55);
    5754      //
    5855      // dataTypeTextBox
     
    7875                  | System.Windows.Forms.AnchorStyles.Left)
    7976                  | System.Windows.Forms.AnchorStyles.Right)));
     77      this.valueGroupBox.Controls.Add(this.showInRunCheckBox);
    8078      this.valueGroupBox.Controls.Add(this.viewHost);
    8179      this.valueGroupBox.Controls.Add(this.valueComboBox);
     
    8785      this.valueGroupBox.Text = "Value";
    8886      //
     87      // showInRunCheckBox
     88      //
     89      this.showInRunCheckBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     90      this.showInRunCheckBox.AutoSize = true;
     91      this.showInRunCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     92      this.showInRunCheckBox.Checked = true;
     93      this.showInRunCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
     94      this.showInRunCheckBox.Location = new System.Drawing.Point(290, 21);
     95      this.showInRunCheckBox.Name = "showInRunCheckBox";
     96      this.showInRunCheckBox.Size = new System.Drawing.Size(90, 17);
     97      this.showInRunCheckBox.TabIndex = 1;
     98      this.showInRunCheckBox.Text = "&Show in Run:";
     99      this.toolTip.SetToolTip(this.showInRunCheckBox, "Check to show the value of this parameter in each run.");
     100      this.showInRunCheckBox.UseVisualStyleBackColor = true;
     101      this.showInRunCheckBox.CheckedChanged += new System.EventHandler(this.showInRunCheckBox_CheckedChanged);
     102      //
    89103      // viewHost
    90104      //
     
    92106                  | System.Windows.Forms.AnchorStyles.Left)
    93107                  | System.Windows.Forms.AnchorStyles.Right)));
     108      this.viewHost.Caption = "View";
    94109      this.viewHost.Content = null;
    95110      this.viewHost.Location = new System.Drawing.Point(6, 46);
    96111      this.viewHost.Name = "viewHost";
     112      this.viewHost.ReadOnly = false;
    97113      this.viewHost.Size = new System.Drawing.Size(374, 185);
    98       this.viewHost.TabIndex = 0;
     114      this.viewHost.TabIndex = 2;
    99115      this.viewHost.ViewType = null;
    100116      //
     
    107123      this.valueComboBox.Location = new System.Drawing.Point(6, 19);
    108124      this.valueComboBox.Name = "valueComboBox";
    109       this.valueComboBox.Size = new System.Drawing.Size(374, 21);
    110       this.valueComboBox.TabIndex = 1;
     125      this.valueComboBox.Size = new System.Drawing.Size(278, 21);
     126      this.valueComboBox.TabIndex = 0;
    111127      this.toolTip.SetToolTip(this.valueComboBox, "Selected Value");
    112128      this.valueComboBox.SelectedIndexChanged += new System.EventHandler(this.valueComboBox_SelectedIndexChanged);
     
    128144      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    129145      this.valueGroupBox.ResumeLayout(false);
     146      this.valueGroupBox.PerformLayout();
    130147      this.ResumeLayout(false);
    131148      this.PerformLayout();
     
    138155    protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost;
    139156    protected System.Windows.Forms.ComboBox valueComboBox;
     157    protected System.Windows.Forms.CheckBox showInRunCheckBox;
    140158  }
    141159}
Note: See TracChangeset for help on using the changeset viewer.