#region License Information /* HeuristicLab * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System.Windows.Forms; namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views { public partial class SlidingWindowBestSolutionsCollectionHeatMapView { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.heatMapView = new HeuristicLab.Analysis.Views.HeatMapView(); this.comboBox1 = new System.Windows.Forms.ComboBox(); this.label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // heatMapView // this.heatMapView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.heatMapView.Caption = "HeatMap View"; this.heatMapView.Content = null; this.heatMapView.Location = new System.Drawing.Point(3, 53); this.heatMapView.Name = "heatMapView"; this.heatMapView.ReadOnly = false; this.heatMapView.Size = new System.Drawing.Size(812, 537); this.heatMapView.TabIndex = 0; // // comboBox1 // this.comboBox1.FormattingEnabled = true; this.comboBox1.Items.AddRange(new object[] { "Pearson R2", "Mean Squared Error"}); this.comboBox1.Location = new System.Drawing.Point(3, 26); this.comboBox1.Name = "comboBox1"; this.comboBox1.Size = new System.Drawing.Size(153, 21); this.comboBox1.TabIndex = 1; this.comboBox1.Text = "Pearson R2"; this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged); this.comboBox1.DropDownStyle = ComboBoxStyle.DropDownList; // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(3, 8); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(85, 13); this.label1.TabIndex = 2; this.label1.Text = "Quality measure:"; // // SlidingWindowBestSolutionsCollectionView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.label1); this.Controls.Add(this.comboBox1); this.Controls.Add(this.heatMapView); this.Name = "SlidingWindowBestSolutionsCollectionView"; this.Size = new System.Drawing.Size(818, 593); this.ResumeLayout(false); this.PerformLayout(); } #endregion private HeuristicLab.Analysis.Views.HeatMapView heatMapView; private System.Windows.Forms.ComboBox comboBox1; private System.Windows.Forms.Label label1; } }