[10688] | 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
|
---|
[10687] | 21 |
|
---|
[10721] | 22 | using System.Windows.Forms;
|
---|
| 23 |
|
---|
[10687] | 24 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
|
---|
| 25 |
|
---|
[10722] | 26 | public partial class SlidingWindowBestSolutionsCollectionHeatMapControl {
|
---|
[10687] | 27 | /// <summary>
|
---|
| 28 | /// Required designer variable.
|
---|
| 29 | /// </summary>
|
---|
| 30 | private System.ComponentModel.IContainer components = null;
|
---|
| 31 |
|
---|
| 32 | /// <summary>
|
---|
| 33 | /// Clean up any resources being used.
|
---|
| 34 | /// </summary>
|
---|
| 35 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 36 | protected override void Dispose(bool disposing) {
|
---|
| 37 | if (disposing && (components != null)) {
|
---|
| 38 | components.Dispose();
|
---|
| 39 | }
|
---|
| 40 | base.Dispose(disposing);
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 | #region Component Designer generated code
|
---|
| 44 |
|
---|
| 45 | /// <summary>
|
---|
| 46 | /// Required method for Designer support - do not modify
|
---|
| 47 | /// the contents of this method with the code editor.
|
---|
| 48 | /// </summary>
|
---|
| 49 | private void InitializeComponent() {
|
---|
[10722] | 50 | this.heatMapView = new SlidingWindowBestSolutionsCollectionHeatMapView();
|
---|
[10687] | 51 | this.comboBox1 = new System.Windows.Forms.ComboBox();
|
---|
| 52 | this.label1 = new System.Windows.Forms.Label();
|
---|
| 53 | this.SuspendLayout();
|
---|
| 54 | //
|
---|
| 55 | // heatMapView
|
---|
| 56 | //
|
---|
| 57 | this.heatMapView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 58 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 59 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 60 | this.heatMapView.Caption = "HeatMap View";
|
---|
| 61 | this.heatMapView.Content = null;
|
---|
| 62 | this.heatMapView.Location = new System.Drawing.Point(3, 53);
|
---|
| 63 | this.heatMapView.Name = "heatMapView";
|
---|
| 64 | this.heatMapView.ReadOnly = false;
|
---|
| 65 | this.heatMapView.Size = new System.Drawing.Size(812, 537);
|
---|
| 66 | this.heatMapView.TabIndex = 0;
|
---|
| 67 | //
|
---|
| 68 | // comboBox1
|
---|
| 69 | //
|
---|
| 70 | this.comboBox1.FormattingEnabled = true;
|
---|
| 71 | this.comboBox1.Items.AddRange(new object[] {
|
---|
| 72 | "Pearson R2",
|
---|
| 73 | "Mean Squared Error"});
|
---|
| 74 | this.comboBox1.Location = new System.Drawing.Point(3, 26);
|
---|
| 75 | this.comboBox1.Name = "comboBox1";
|
---|
| 76 | this.comboBox1.Size = new System.Drawing.Size(153, 21);
|
---|
| 77 | this.comboBox1.TabIndex = 1;
|
---|
| 78 | this.comboBox1.Text = "Pearson R2";
|
---|
| 79 | this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
|
---|
[10721] | 80 | this.comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
|
---|
[10687] | 81 | //
|
---|
| 82 | // label1
|
---|
| 83 | //
|
---|
| 84 | this.label1.AutoSize = true;
|
---|
| 85 | this.label1.Location = new System.Drawing.Point(3, 8);
|
---|
| 86 | this.label1.Name = "label1";
|
---|
| 87 | this.label1.Size = new System.Drawing.Size(85, 13);
|
---|
| 88 | this.label1.TabIndex = 2;
|
---|
| 89 | this.label1.Text = "Quality measure:";
|
---|
| 90 | //
|
---|
| 91 | // SlidingWindowBestSolutionsCollectionView
|
---|
| 92 | //
|
---|
| 93 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 94 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 95 | this.Controls.Add(this.label1);
|
---|
| 96 | this.Controls.Add(this.comboBox1);
|
---|
| 97 | this.Controls.Add(this.heatMapView);
|
---|
| 98 | this.Name = "SlidingWindowBestSolutionsCollectionView";
|
---|
| 99 | this.Size = new System.Drawing.Size(818, 593);
|
---|
| 100 | this.ResumeLayout(false);
|
---|
| 101 | this.PerformLayout();
|
---|
| 102 |
|
---|
| 103 | }
|
---|
| 104 |
|
---|
| 105 | #endregion
|
---|
| 106 |
|
---|
[10722] | 107 | private SlidingWindowBestSolutionsCollectionHeatMapView heatMapView;
|
---|
[10687] | 108 | private System.Windows.Forms.ComboBox comboBox1;
|
---|
| 109 | private System.Windows.Forms.Label label1;
|
---|
| 110 | }
|
---|
| 111 | }
|
---|