Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DatastreamAnalysis/HeuristicLab.DatastreamAnalysis.Views/3.4/RegressionEnsembleModelView.Designer.cs @ 14538

Last change on this file since 14538 was 14536, checked in by jzenisek, 7 years ago

#2719 added datastream type; updated the optimizer view and control functionality

File size: 3.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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 HeuristicLab.Core.Views;
23using HeuristicLab.Problems.DataAnalysis;
24
25namespace HeuristicLab.DatastreamAnalysis.Views {
26  partial class RegressionEnsembleModelView {
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.modelsView = new HeuristicLab.DatastreamAnalysis.Views.RegressionEnsembleModelView.ModelsView();
51      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
52      this.SuspendLayout();
53      //
54      // nameTextBox
55      //
56      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
57      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
58      this.nameTextBox.Size = new System.Drawing.Size(468, 20);
59      //
60      // infoLabel
61      //
62      this.infoLabel.Location = new System.Drawing.Point(532, 3);
63      //
64      // modelsView
65      //
66      this.modelsView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
67            | System.Windows.Forms.AnchorStyles.Left)
68            | System.Windows.Forms.AnchorStyles.Right)));
69      this.modelsView.Caption = "Models View";
70      this.modelsView.Content = null;
71      this.modelsView.Location = new System.Drawing.Point(6, 35);
72      this.modelsView.Name = "modelsView";
73      this.modelsView.ReadOnly = false;
74      this.modelsView.ShowDetails = true;
75      this.modelsView.Size = new System.Drawing.Size(532, 383);
76      this.modelsView.TabIndex = 1;
77      //
78      // RegressionEnsembleModelView
79      //
80      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
81      this.Controls.Add(this.modelsView);
82      this.Name = "RegressionEnsembleModelView";
83      this.Size = new System.Drawing.Size(551, 425);
84      this.Controls.SetChildIndex(this.modelsView, 0);
85      this.Controls.SetChildIndex(this.nameLabel, 0);
86      this.Controls.SetChildIndex(this.nameTextBox, 0);
87      this.Controls.SetChildIndex(this.infoLabel, 0);
88      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
89      this.ResumeLayout(false);
90      this.PerformLayout();
91
92    }
93
94    #endregion
95
96    private ModelsView modelsView;
97  }
98}
Note: See TracBrowser for help on using the repository browser.