Free cookie consent management tool by TermsFeed Policy Generator

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