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/ValueParameterView.Designer.cs

    r4011 r4332  
    4747    private void InitializeComponent() {
    4848      this.valueGroupBox = new System.Windows.Forms.GroupBox();
     49      this.showInRunCheckBox = new System.Windows.Forms.CheckBox();
    4950      this.valueViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    5051      this.clearValueButton = new System.Windows.Forms.Button();
     
    7677                  | System.Windows.Forms.AnchorStyles.Left)
    7778                  | System.Windows.Forms.AnchorStyles.Right)));
     79      this.valueGroupBox.Controls.Add(this.showInRunCheckBox);
    7880      this.valueGroupBox.Controls.Add(this.valueViewHost);
    7981      this.valueGroupBox.Controls.Add(this.clearValueButton);
     
    8688      this.valueGroupBox.Text = "Value";
    8789      //
    88       // viewHost
     90      // showInRunCheckBox
     91      //
     92      this.showInRunCheckBox.AutoSize = true;
     93      this.showInRunCheckBox.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     94      this.showInRunCheckBox.Checked = true;
     95      this.showInRunCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
     96      this.showInRunCheckBox.Location = new System.Drawing.Point(66, 24);
     97      this.showInRunCheckBox.Name = "showInRunCheckBox";
     98      this.showInRunCheckBox.Size = new System.Drawing.Size(90, 17);
     99      this.showInRunCheckBox.TabIndex = 2;
     100      this.showInRunCheckBox.Text = "&Show in Run:";
     101      this.toolTip.SetToolTip(this.showInRunCheckBox, "Check to show the value of this parameter in each run.");
     102      this.showInRunCheckBox.UseVisualStyleBackColor = true;
     103      this.showInRunCheckBox.CheckedChanged += new System.EventHandler(this.showInRunCheckBox_CheckedChanged);
     104      //
     105      // valueViewHost
    89106      //
    90107      this.valueViewHost.AllowDrop = true;
    91       this.valueViewHost.Content = null;
    92108      this.valueViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    93109                  | System.Windows.Forms.AnchorStyles.Left)
    94110                  | System.Windows.Forms.AnchorStyles.Right)));
     111      this.valueViewHost.Caption = "View";
     112      this.valueViewHost.Content = null;
    95113      this.valueViewHost.Location = new System.Drawing.Point(6, 49);
    96       this.valueViewHost.Name = "viewHost";
     114      this.valueViewHost.Name = "valueViewHost";
     115      this.valueViewHost.ReadOnly = false;
    97116      this.valueViewHost.Size = new System.Drawing.Size(374, 182);
    98       this.valueViewHost.TabIndex = 0;
     117      this.valueViewHost.TabIndex = 3;
    99118      this.valueViewHost.ViewType = null;
    100       this.valueViewHost.DragOver += new System.Windows.Forms.DragEventHandler(this.valueViewHost_DragEnterOver);
    101119      this.valueViewHost.DragDrop += new System.Windows.Forms.DragEventHandler(this.valueViewHost_DragDrop);
    102120      this.valueViewHost.DragEnter += new System.Windows.Forms.DragEventHandler(this.valueViewHost_DragEnterOver);
     121      this.valueViewHost.DragOver += new System.Windows.Forms.DragEventHandler(this.valueViewHost_DragEnterOver);
    103122      //
    104123      // clearValueButton
     
    112131      this.toolTip.SetToolTip(this.clearValueButton, "Clear Value");
    113132      this.clearValueButton.UseVisualStyleBackColor = true;
    114       this.clearValueButton.Click += new System.EventHandler(this.setValueButton_Click);
     133      this.clearValueButton.Click += new System.EventHandler(this.clearValueButton_Click);
    115134      //
    116135      // setValueButton
     
    123142      this.toolTip.SetToolTip(this.setValueButton, "Set Value");
    124143      this.setValueButton.UseVisualStyleBackColor = true;
    125       this.setValueButton.Click += new System.EventHandler(this.changeValueButton_Click);
     144      this.setValueButton.Click += new System.EventHandler(this.setValueButton_Click);
    126145      //
    127146      // ValueParameterView
     
    141160      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    142161      this.valueGroupBox.ResumeLayout(false);
     162      this.valueGroupBox.PerformLayout();
    143163      this.ResumeLayout(false);
    144164      this.PerformLayout();
     
    152172    protected System.Windows.Forms.Button setValueButton;
    153173    protected System.Windows.Forms.Button clearValueButton;
     174    protected System.Windows.Forms.CheckBox showInRunCheckBox;
    154175  }
    155176}
Note: See TracChangeset for help on using the changeset viewer.