Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/17/18 14:11:45 (6 years ago)
Author:
fholzing
Message:

#2871: Added three additional UI-Controls, a Label + ComboBox for ordering (VariableName or ImpactFactor) and a CheckBox for Ascending/Descending

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionVariableImpactsView.Designer.cs

    r15583 r15626  
    5151      this.factorVarReplacementLabel = new System.Windows.Forms.Label();
    5252      this.factorVarReplComboBox = new System.Windows.Forms.ComboBox();
     53      this.sortByLabel = new System.Windows.Forms.Label();
     54      this.sortByComboBox = new System.Windows.Forms.ComboBox();
     55      this.ascendingCheckBox = new System.Windows.Forms.CheckBox();
    5356      this.SuspendLayout();
    5457      //
    5558      // variableImactsArrayView
    5659      //
    57       this.variableImactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
    58             | System.Windows.Forms.AnchorStyles.Left) 
     60      this.variableImactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     61            | System.Windows.Forms.AnchorStyles.Left)
    5962            | System.Windows.Forms.AnchorStyles.Right)));
    6063      this.variableImactsArrayView.Caption = "StringConvertibleArray View";
     
    6366      this.variableImactsArrayView.Name = "variableImactsArrayView";
    6467      this.variableImactsArrayView.ReadOnly = true;
    65       this.variableImactsArrayView.Size = new System.Drawing.Size(363, 278);
     68      this.variableImactsArrayView.Size = new System.Drawing.Size(706, 278);
    6669      this.variableImactsArrayView.TabIndex = 2;
    6770      //
     
    133136      this.factorVarReplComboBox.SelectedIndexChanged += new System.EventHandler(this.replacementComboBox_SelectedIndexChanged);
    134137      //
     138      // sortByLabel
     139      //
     140      this.sortByLabel.AutoSize = true;
     141      this.sortByLabel.Location = new System.Drawing.Point(324, 6);
     142      this.sortByLabel.Name = "sortByLabel";
     143      this.sortByLabel.Size = new System.Drawing.Size(43, 13);
     144      this.sortByLabel.TabIndex = 4;
     145      this.sortByLabel.Text = "Sort by:";
     146      //
     147      // sortByComboBox
     148      //
     149      this.sortByComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     150      this.sortByComboBox.FormattingEnabled = true;
     151      this.sortByComboBox.Items.AddRange(new object[] {
     152            "Variable",
     153            "Impact"});
     154      this.sortByComboBox.Location = new System.Drawing.Point(373, 3);
     155      this.sortByComboBox.Name = "sortByComboBox";
     156      this.sortByComboBox.Size = new System.Drawing.Size(121, 21);
     157      this.sortByComboBox.TabIndex = 5;
     158      this.sortByComboBox.SelectedIndexChanged += new System.EventHandler(this.sortByComboBox_SelectedIndexChanged);
     159      this.sortByComboBox.SelectedIndex = 1;
     160      //
     161      // ascendingCheckBox
     162      //
     163      this.ascendingCheckBox.AutoSize = true;
     164      this.ascendingCheckBox.Location = new System.Drawing.Point(500, 6);
     165      this.ascendingCheckBox.Name = "ascendingCheckBox";
     166      this.ascendingCheckBox.Size = new System.Drawing.Size(76, 17);
     167      this.ascendingCheckBox.TabIndex = 7;
     168      this.ascendingCheckBox.Text = "Ascending";
     169      this.ascendingCheckBox.UseVisualStyleBackColor = true;
     170      this.ascendingCheckBox.CheckedChanged += new System.EventHandler(this.ascendingCheckBox_CheckedChanged);
     171      //
    135172      // RegressionSolutionVariableImpactsView
    136173      //
    137174      this.AllowDrop = true;
    138175      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     176      this.Controls.Add(this.ascendingCheckBox);
     177      this.Controls.Add(this.sortByLabel);
     178      this.Controls.Add(this.sortByComboBox);
    139179      this.Controls.Add(this.factorVarReplComboBox);
    140180      this.Controls.Add(this.factorVarReplacementLabel);
     
    145185      this.Controls.Add(this.variableImactsArrayView);
    146186      this.Name = "RegressionSolutionVariableImpactsView";
    147       this.Size = new System.Drawing.Size(369, 365);
     187      this.Size = new System.Drawing.Size(712, 365);
    148188      this.ResumeLayout(false);
    149189      this.PerformLayout();
     
    160200    private System.Windows.Forms.Label factorVarReplacementLabel;
    161201    private System.Windows.Forms.ComboBox factorVarReplComboBox;
     202    private System.Windows.Forms.Label sortByLabel;
     203    private System.Windows.Forms.ComboBox sortByComboBox;
     204    private System.Windows.Forms.CheckBox ascendingCheckBox;
    162205  }
    163206}
Note: See TracChangeset for help on using the changeset viewer.