Free cookie consent management tool by TermsFeed Policy Generator

source: branches/1837_Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/SlidingWindow/SlidingWindowBestSolutionsCollectionView.Designer.cs

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

#1837: Moved sliding window views into separate folder, re-added title to heat map view.

File size: 4.8 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
22using System.Windows.Forms;
23
24namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views {
25
26  public partial class SlidingWindowBestSolutionsCollectionView {
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() {
50      this.enhancedStringConvertibleMatrixView = new HeuristicLab.Data.Views.EnhancedStringConvertibleMatrixView();
51      this.comboBox1 = new System.Windows.Forms.ComboBox();
52      this.label1 = new System.Windows.Forms.Label();
53      this.SuspendLayout();
54      //
55      // enhancedStringConvertibleMatrixView
56      //
57      this.enhancedStringConvertibleMatrixView.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.enhancedStringConvertibleMatrixView.Caption = "HeatMap View";
61      this.enhancedStringConvertibleMatrixView.Content = null;
62      this.enhancedStringConvertibleMatrixView.Location = new System.Drawing.Point(3, 53);
63      this.enhancedStringConvertibleMatrixView.Maximum = 0D;
64      this.enhancedStringConvertibleMatrixView.Minimum = 0D;
65      this.enhancedStringConvertibleMatrixView.Name = "enhancedStringConvertibleMatrixView";
66      this.enhancedStringConvertibleMatrixView.ReadOnly = false;
67      this.enhancedStringConvertibleMatrixView.ShowRowsAndColumnsTextBox = false;
68      this.enhancedStringConvertibleMatrixView.ShowStatisticalInformation = false;
69      this.enhancedStringConvertibleMatrixView.Size = new System.Drawing.Size(812, 537);
70      this.enhancedStringConvertibleMatrixView.TabIndex = 0;
71      //
72      // comboBox1
73      //
74      this.comboBox1.FormattingEnabled = true;
75      this.comboBox1.Items.AddRange(new object[] {
76            "Pearson R2",
77            "Mean Squared Error"});
78      this.comboBox1.Location = new System.Drawing.Point(3, 26);
79      this.comboBox1.Name = "comboBox1";
80      this.comboBox1.Size = new System.Drawing.Size(153, 21);
81      this.comboBox1.TabIndex = 1;
82      this.comboBox1.Text = "Pearson R2";
83      this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
84      this.comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;
85      //
86      // label1
87      //
88      this.label1.AutoSize = true;
89      this.label1.Location = new System.Drawing.Point(3, 8);
90      this.label1.Name = "label1";
91      this.label1.Size = new System.Drawing.Size(85, 13);
92      this.label1.TabIndex = 2;
93      this.label1.Text = "Quality measure:";
94      //
95      // SlidingWindowBestSolutionsCollectionView
96      //
97      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
98      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
99      this.Controls.Add(this.label1);
100      this.Controls.Add(this.comboBox1);
101      this.Controls.Add(this.enhancedStringConvertibleMatrixView);
102      this.Name = "SlidingWindowBestSolutionsCollectionView";
103      this.Size = new System.Drawing.Size(818, 593);
104      this.ResumeLayout(false);
105      this.PerformLayout();
106
107    }
108
109    #endregion
110
111    private Data.Views.EnhancedStringConvertibleMatrixView enhancedStringConvertibleMatrixView;
112    private System.Windows.Forms.ComboBox comboBox1;
113    private System.Windows.Forms.Label label1;
114  }
115}
Note: See TracBrowser for help on using the repository browser.