Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/SupportVectorRegressionSolutionView.Designer.cs @ 3855

Last change on this file since 3855 was 3853, checked in by gkronber, 14 years ago

Added views for support vector machine models and support vector regression solutions. #1009

File size: 5.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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
21namespace HeuristicLab.Problems.DataAnalysis.Views {
22  partial class SupportVectorRegressionSolutionView {
23    /// <summary>
24    /// Required designer variable.
25    /// </summary>
26    private System.ComponentModel.IContainer components = null;
27
28    /// <summary>
29    /// Clean up any resources being used.
30    /// </summary>
31    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
32    protected override void Dispose(bool disposing) {
33      if (disposing && (components != null)) {
34        components.Dispose();
35      }
36      base.Dispose(disposing);
37    }
38
39    #region Component Designer generated code
40
41    /// <summary>
42    /// Required method for Designer support - do not modify
43    /// the contents of this method with the code editor.
44    /// </summary>
45    private void InitializeComponent() {
46      this.modelTabControl = new System.Windows.Forms.TabControl();
47      this.modelTabPage = new System.Windows.Forms.TabPage();
48      this.dataTabPage = new System.Windows.Forms.TabPage();
49      this.modelPanel = new HeuristicLab.MainForm.WindowsForms.ViewHost();
50      this.dataPanel = new HeuristicLab.MainForm.WindowsForms.ViewHost();
51      this.modelTabControl.SuspendLayout();
52      this.modelTabPage.SuspendLayout();
53      this.dataTabPage.SuspendLayout();
54      this.SuspendLayout();
55      //
56      // modelTabControl
57      //
58      this.modelTabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
59                  | System.Windows.Forms.AnchorStyles.Left)
60                  | System.Windows.Forms.AnchorStyles.Right)));
61      this.modelTabControl.Controls.Add(this.modelTabPage);
62      this.modelTabControl.Controls.Add(this.dataTabPage);
63      this.modelTabControl.Location = new System.Drawing.Point(3, 3);
64      this.modelTabControl.Name = "modelTabControl";
65      this.modelTabControl.SelectedIndex = 0;
66      this.modelTabControl.Size = new System.Drawing.Size(247, 245);
67      this.modelTabControl.TabIndex = 0;
68      //
69      // modelTabPage
70      //
71      this.modelTabPage.Controls.Add(this.modelPanel);
72      this.modelTabPage.Location = new System.Drawing.Point(4, 22);
73      this.modelTabPage.Name = "modelTabPage";
74      this.modelTabPage.Padding = new System.Windows.Forms.Padding(3);
75      this.modelTabPage.Size = new System.Drawing.Size(239, 219);
76      this.modelTabPage.TabIndex = 0;
77      this.modelTabPage.Text = "Model";
78      this.modelTabPage.UseVisualStyleBackColor = true;
79      //
80      // dataTabPage
81      //
82      this.dataTabPage.Controls.Add(this.dataPanel);
83      this.dataTabPage.Location = new System.Drawing.Point(4, 22);
84      this.dataTabPage.Name = "dataTabPage";
85      this.dataTabPage.Padding = new System.Windows.Forms.Padding(3);
86      this.dataTabPage.Size = new System.Drawing.Size(239, 219);
87      this.dataTabPage.TabIndex = 1;
88      this.dataTabPage.Text = "Data";
89      this.dataTabPage.UseVisualStyleBackColor = true;
90      //
91      // modelPanel
92      //
93      this.modelPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
94                  | System.Windows.Forms.AnchorStyles.Left)
95                  | System.Windows.Forms.AnchorStyles.Right)));
96      this.modelPanel.Location = new System.Drawing.Point(6, 6);
97      this.modelPanel.Name = "modelPanel";
98      this.modelPanel.Size = new System.Drawing.Size(227, 207);
99      this.modelPanel.TabIndex = 0;
100      //
101      // dataPanel
102      //
103      this.dataPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
104                  | System.Windows.Forms.AnchorStyles.Left)
105                  | System.Windows.Forms.AnchorStyles.Right)));
106      this.dataPanel.Location = new System.Drawing.Point(6, 6);
107      this.dataPanel.Name = "dataPanel";
108      this.dataPanel.Size = new System.Drawing.Size(227, 207);
109      this.dataPanel.TabIndex = 0;
110      //
111      // SupportVectorRegressionSolutionView
112      //
113      this.AllowDrop = true;
114      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
115      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
116      this.Controls.Add(this.modelTabControl);
117      this.Name = "SupportVectorRegressionSolutionView";
118      this.Size = new System.Drawing.Size(253, 251);
119      this.modelTabControl.ResumeLayout(false);
120      this.modelTabPage.ResumeLayout(false);
121      this.dataTabPage.ResumeLayout(false);
122      this.ResumeLayout(false);
123
124    }
125
126    #endregion
127
128    private System.Windows.Forms.TabControl modelTabControl;
129    private System.Windows.Forms.TabPage modelTabPage;
130    private HeuristicLab.MainForm.WindowsForms.ViewHost modelPanel;
131    private System.Windows.Forms.TabPage dataTabPage;
132    private HeuristicLab.MainForm.WindowsForms.ViewHost dataPanel;
133
134
135  }
136}
Note: See TracBrowser for help on using the repository browser.