Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/SlidingWindowBestSolutionsCollectionHeatMapView.Designer.cs @ 10687

Last change on this file since 10687 was 10687, checked in by bburlacu, 11 years ago

#1837: Added missing designer file.

File size: 3.3 KB
Line 
1
2
3namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
4
5  public partial class SlidingWindowBestSolutionsCollectionHeatMapView {
6    /// <summary>
7    /// Required designer variable.
8    /// </summary>
9    private System.ComponentModel.IContainer components = null;
10
11    /// <summary>
12    /// Clean up any resources being used.
13    /// </summary>
14    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
15    protected override void Dispose(bool disposing) {
16      if (disposing && (components != null)) {
17        components.Dispose();
18      }
19      base.Dispose(disposing);
20    }
21
22    #region Component Designer generated code
23
24    /// <summary>
25    /// Required method for Designer support - do not modify
26    /// the contents of this method with the code editor.
27    /// </summary>
28    private void InitializeComponent() {
29      this.heatMapView = new HeuristicLab.Analysis.Views.HeatMapView();
30      this.comboBox1 = new System.Windows.Forms.ComboBox();
31      this.label1 = new System.Windows.Forms.Label();
32      this.SuspendLayout();
33      //
34      // heatMapView
35      //
36      this.heatMapView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
37            | System.Windows.Forms.AnchorStyles.Left)
38            | System.Windows.Forms.AnchorStyles.Right)));
39      this.heatMapView.Caption = "HeatMap View";
40      this.heatMapView.Content = null;
41      this.heatMapView.Location = new System.Drawing.Point(3, 53);
42      this.heatMapView.Name = "heatMapView";
43      this.heatMapView.ReadOnly = false;
44      this.heatMapView.Size = new System.Drawing.Size(812, 537);
45      this.heatMapView.TabIndex = 0;
46      //
47      // comboBox1
48      //
49      this.comboBox1.FormattingEnabled = true;
50      this.comboBox1.Items.AddRange(new object[] {
51            "Pearson R2",
52            "Mean Squared Error"});
53      this.comboBox1.Location = new System.Drawing.Point(3, 26);
54      this.comboBox1.Name = "comboBox1";
55      this.comboBox1.Size = new System.Drawing.Size(153, 21);
56      this.comboBox1.TabIndex = 1;
57      this.comboBox1.Text = "Pearson R2";
58      this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
59      //
60      // label1
61      //
62      this.label1.AutoSize = true;
63      this.label1.Location = new System.Drawing.Point(3, 8);
64      this.label1.Name = "label1";
65      this.label1.Size = new System.Drawing.Size(85, 13);
66      this.label1.TabIndex = 2;
67      this.label1.Text = "Quality measure:";
68      //
69      // SlidingWindowBestSolutionsCollectionView
70      //
71      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
72      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
73      this.Controls.Add(this.label1);
74      this.Controls.Add(this.comboBox1);
75      this.Controls.Add(this.heatMapView);
76      this.Name = "SlidingWindowBestSolutionsCollectionView";
77      this.Size = new System.Drawing.Size(818, 593);
78      this.ResumeLayout(false);
79      this.PerformLayout();
80
81    }
82
83    #endregion
84
85    private HeuristicLab.Analysis.Views.HeatMapView heatMapView;
86    private System.Windows.Forms.ComboBox comboBox1;
87    private System.Windows.Forms.Label label1;
88  }
89}
Note: See TracBrowser for help on using the repository browser.