Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/FeatureCorrelation/EnhancedStringConvertibleMatrixView.Designer.cs @ 8833

Last change on this file since 8833 was 8833, checked in by sforsten, 11 years ago

#1292:

  • removed combo box in TimeframeCorrelationView and added a textbox instead
  • caches are directly in (Timeframe-)FeatureCorrelationView
  • caches use Tuple<> instead of nested dictionaries
  • a control EnhancedStringConvertibleMatrix inherits from StringConvertibleMatrixView to reduce code duplication
  • add interface IDependencyCalculator to several calculators
  • fixed bug: a previous started calculation is cancelled, if a new calculation shall be started and the values are already in the cache
  • fixed bug: if the content is changed, the calculation is cancelled

HeatMap is still used for the dependency representation, because a class is needed which implements IStringConvertibleMatrix and it has a maximum and minimum value.

File size: 2.8 KB
Line 
1namespace HeuristicLab.Problems.DataAnalysis.Views {
2  partial class EnhancedStringConvertibleMatrixView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.ShowHideRows = new System.Windows.Forms.ToolStripMenuItem();
27      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
28      this.SuspendLayout();
29      //
30      // rowsTextBox
31      //
32      this.errorProvider.SetIconAlignment(this.rowsTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
33      this.errorProvider.SetIconPadding(this.rowsTextBox, 2);
34      //
35      // dataGridView
36      //
37      this.dataGridView.CellPainting += new System.Windows.Forms.DataGridViewCellPaintingEventHandler(dataGridView_CellPainting);
38      //
39      // contextMenu
40      //
41      this.contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
42            this.ShowHideRows});
43      //
44      // ShowHideRows
45      //
46      this.ShowHideRows.Name = "ShowHideRows";
47      this.ShowHideRows.Size = new System.Drawing.Size(190, 22);
48      this.ShowHideRows.Text = "Show / Hide Rows";
49      this.ShowHideRows.Click += new System.EventHandler(this.ShowHideRows_Click);
50      //
51      // ColoredStringConvertibleMatrixView
52      //
53      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
54      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
55      this.Name = "ColoredStringConvertibleMatrixView";
56      this.ShowRowsAndColumnsTextBox = false;
57      this.ShowStatisticalInformation = false;
58      this.Controls.SetChildIndex(this.statisticsTextBox, 0);
59      this.Controls.SetChildIndex(this.rowsLabel, 0);
60      this.Controls.SetChildIndex(this.columnsLabel, 0);
61      this.Controls.SetChildIndex(this.rowsTextBox, 0);
62      this.Controls.SetChildIndex(this.columnsTextBox, 0);
63      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
64      this.ResumeLayout(false);
65      this.PerformLayout();
66
67    }
68    #endregion
69
70    protected System.Windows.Forms.ToolStripMenuItem ShowHideRows;
71  }
72}
Note: See TracBrowser for help on using the repository browser.