Free cookie consent management tool by TermsFeed Policy Generator

Changeset 9912


Ignore:
Timestamp:
08/27/13 13:01:34 (11 years ago)
Author:
ascheibe
Message:

#2031 some minor UI improvements

Location:
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/CorrelationView.cs

    r9911 r9912  
    104104        RebuildCorrelationTable();
    105105      }
    106     }
    107 
    108     private void calculateCorrelation_Click(object sender, EventArgs e) {
    109       RebuildCorrelationTable();
    110106    }
    111107    #endregion
     
    224220      stringConvertibleMatrixView.Content = dt;
    225221    }
     222
     223    private void resultComboBox_SelectedIndexChanged(object sender, EventArgs e) {
     224      RebuildCorrelationTable();
     225    }
    226226  }
    227227}
  • branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/CorrelationView.designer.cs

    r9759 r9912  
    4848      this.label1 = new System.Windows.Forms.Label();
    4949      this.resultComboBox = new System.Windows.Forms.ComboBox();
    50       this.calculateCorrelation = new System.Windows.Forms.Button();
    5150      this.SuspendLayout();
    5251      //
     
    6362      this.stringConvertibleMatrixView.ShowRowsAndColumnsTextBox = true;
    6463      this.stringConvertibleMatrixView.ShowStatisticalInformation = true;
    65       this.stringConvertibleMatrixView.Size = new System.Drawing.Size(492, 323);
     64      this.stringConvertibleMatrixView.Size = new System.Drawing.Size(492, 352);
    6665      this.stringConvertibleMatrixView.TabIndex = 0;
    6766      //
     
    7170      this.label1.Location = new System.Drawing.Point(5, 6);
    7271      this.label1.Name = "label1";
    73       this.label1.Size = new System.Drawing.Size(40, 13);
     72      this.label1.Size = new System.Drawing.Size(37, 13);
    7473      this.label1.TabIndex = 6;
    7574      this.label1.Text = "Value:";
     
    7776      // resultComboBox
    7877      //
    79       this.resultComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     78      this.resultComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
    8079            | System.Windows.Forms.AnchorStyles.Right)));
    8180      this.resultComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     
    8584      this.resultComboBox.Size = new System.Drawing.Size(424, 21);
    8685      this.resultComboBox.TabIndex = 5;
     86      this.resultComboBox.SelectedIndexChanged += new System.EventHandler(this.resultComboBox_SelectedIndexChanged);
    8787      //
    88       // calculateCorrelation
     88      // CorrelationView
    8989      //
    90       this.calculateCorrelation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
    91       this.calculateCorrelation.Location = new System.Drawing.Point(310, 359);
    92       this.calculateCorrelation.Name = "calculateCorrelation";
    93       this.calculateCorrelation.Size = new System.Drawing.Size(185, 23);
    94       this.calculateCorrelation.TabIndex = 9;
    95       this.calculateCorrelation.Text = "Calculate correlation coefficients";
    96       this.calculateCorrelation.UseVisualStyleBackColor = true;
    97       this.calculateCorrelation.Click += new System.EventHandler(this.calculateCorrelation_Click);
    98       //
    99       // ResultCorrelationView
    100       //
    101       this.Controls.Add(this.calculateCorrelation);
    10290      this.Controls.Add(this.label1);
    10391      this.Controls.Add(this.resultComboBox);
     
    114102    private System.Windows.Forms.Label label1;
    115103    private System.Windows.Forms.ComboBox resultComboBox;
    116     private System.Windows.Forms.Button calculateCorrelation;
    117104  }
    118105}
  • branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/InfoBox.Designer.cs

    r9759 r9912  
    6666            | System.Windows.Forms.AnchorStyles.Left)
    6767            | System.Windows.Forms.AnchorStyles.Right)));
    68       this.infoRichTextBox.BackColor = System.Drawing.SystemColors.Info;
     68      this.infoRichTextBox.BackColor = System.Drawing.SystemColors.Control;
    6969      this.infoRichTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
    7070      this.infoRichTextBox.Location = new System.Drawing.Point(12, 12);
Note: See TracChangeset for help on using the changeset viewer.