Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10688 was 10688, checked in by mkommend, 10 years ago

#1837: Added missing license headers to designer files for sliding window visualization.

File size: 4.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
23
24  public partial class SlidingWindowBestSolutionsCollectionHeatMapView {
25    /// <summary>
26    /// Required designer variable.
27    /// </summary>
28    private System.ComponentModel.IContainer components = null;
29
30    /// <summary>
31    /// Clean up any resources being used.
32    /// </summary>
33    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
34    protected override void Dispose(bool disposing) {
35      if (disposing && (components != null)) {
36        components.Dispose();
37      }
38      base.Dispose(disposing);
39    }
40
41    #region Component Designer generated code
42
43    /// <summary>
44    /// Required method for Designer support - do not modify
45    /// the contents of this method with the code editor.
46    /// </summary>
47    private void InitializeComponent() {
48      this.heatMapView = new HeuristicLab.Analysis.Views.HeatMapView();
49      this.comboBox1 = new System.Windows.Forms.ComboBox();
50      this.label1 = new System.Windows.Forms.Label();
51      this.SuspendLayout();
52      //
53      // heatMapView
54      //
55      this.heatMapView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
56            | System.Windows.Forms.AnchorStyles.Left)
57            | System.Windows.Forms.AnchorStyles.Right)));
58      this.heatMapView.Caption = "HeatMap View";
59      this.heatMapView.Content = null;
60      this.heatMapView.Location = new System.Drawing.Point(3, 53);
61      this.heatMapView.Name = "heatMapView";
62      this.heatMapView.ReadOnly = false;
63      this.heatMapView.Size = new System.Drawing.Size(812, 537);
64      this.heatMapView.TabIndex = 0;
65      //
66      // comboBox1
67      //
68      this.comboBox1.FormattingEnabled = true;
69      this.comboBox1.Items.AddRange(new object[] {
70            "Pearson R2",
71            "Mean Squared Error"});
72      this.comboBox1.Location = new System.Drawing.Point(3, 26);
73      this.comboBox1.Name = "comboBox1";
74      this.comboBox1.Size = new System.Drawing.Size(153, 21);
75      this.comboBox1.TabIndex = 1;
76      this.comboBox1.Text = "Pearson R2";
77      this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
78      //
79      // label1
80      //
81      this.label1.AutoSize = true;
82      this.label1.Location = new System.Drawing.Point(3, 8);
83      this.label1.Name = "label1";
84      this.label1.Size = new System.Drawing.Size(85, 13);
85      this.label1.TabIndex = 2;
86      this.label1.Text = "Quality measure:";
87      //
88      // SlidingWindowBestSolutionsCollectionView
89      //
90      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
91      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
92      this.Controls.Add(this.label1);
93      this.Controls.Add(this.comboBox1);
94      this.Controls.Add(this.heatMapView);
95      this.Name = "SlidingWindowBestSolutionsCollectionView";
96      this.Size = new System.Drawing.Size(818, 593);
97      this.ResumeLayout(false);
98      this.PerformLayout();
99
100    }
101
102    #endregion
103
104    private HeuristicLab.Analysis.Views.HeatMapView heatMapView;
105    private System.Windows.Forms.ComboBox comboBox1;
106    private System.Windows.Forms.Label label1;
107  }
108}
Note: See TracBrowser for help on using the repository browser.