Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/24/13 19:47:32 (11 years ago)
Author:
ascheibe
Message:

#2031

  • added documentation for chart analysis view
  • some ui improvements
File:
1 edited

Legend:

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

    r9742 r9749  
    188188      normalityLabel.Image = null;
    189189      groupCompLabel.Image = null;
     190      pairwiseLabel.Image = null;
    190191      pValTextBox.Text = string.Empty;
    191192      equalDistsTextBox.Text = string.Empty;
     
    280281
    281282    private void infoLabel_DoubleClick(object sender, EventArgs e) {
    282       using (InfoBox dialog = new InfoBox("Description of statistical tests", typeof(StatisticalTestingView).Namespace + ".InfoResources.StatisticalTestsInfo.rtf")) {
     283      using (InfoBox dialog = new InfoBox("Description of Statistical Tests", typeof(StatisticalTestingView).Namespace + ".InfoResources.StatisticalTestsInfo.rtf")) {
    283284        dialog.ShowDialog(this);
    284285      }
     
    321322      double ratio = ((double)cnt) / data.Length * 100.0;
    322323      equalDistsTextBox.Text = ratio.ToString() + " %";
     324
     325      if (cnt == 0) {
     326        pairwiseLabel.Image = HeuristicLab.Analysis.Statistics.Resources.Default;
     327      } else {
     328        pairwiseLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Warning;
     329      }
    323330    }
    324331  }
Note: See TracChangeset for help on using the changeset viewer.