Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem/3.3/Views/PerformanceModelingView.Designer.cs @ 13791

Last change on this file since 13791 was 13791, checked in by abeham, 8 years ago

#2457: working on recommendation algorithms

File size: 12.5 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
22namespace HeuristicLab.OptimizationExpertSystem {
23  partial class PerformanceModelingView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.recommenderLabel = new System.Windows.Forms.Label();
48      this.recommenderComboBox = new System.Windows.Forms.ComboBox();
49      this.recommendStartButton = new System.Windows.Forms.Button();
50      this.tabControl = new System.Windows.Forms.TabControl();
51      this.characteristicsTabPage = new System.Windows.Forms.TabPage();
52      this.characteristicsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
53      this.refreshCharacteristicsButton = new System.Windows.Forms.Button();
54      this.parametersTabPage = new System.Windows.Forms.TabPage();
55      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
56      this.crossvalidationTabPage = new System.Windows.Forms.TabPage();
57      this.xValidateButton = new System.Windows.Forms.Button();
58      this.minTargetView = new HeuristicLab.Data.Views.StringConvertibleValueView();
59      this.minimumTargetLabel = new System.Windows.Forms.Label();
60      this.tabControl.SuspendLayout();
61      this.characteristicsTabPage.SuspendLayout();
62      this.parametersTabPage.SuspendLayout();
63      this.crossvalidationTabPage.SuspendLayout();
64      this.SuspendLayout();
65      //
66      // recommenderLabel
67      //
68      this.recommenderLabel.AutoSize = true;
69      this.recommenderLabel.Location = new System.Drawing.Point(5, 6);
70      this.recommenderLabel.Name = "recommenderLabel";
71      this.recommenderLabel.Size = new System.Drawing.Size(79, 13);
72      this.recommenderLabel.TabIndex = 12;
73      this.recommenderLabel.Text = "Recommender:";
74      //
75      // recommenderComboBox
76      //
77      this.recommenderComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
78            | System.Windows.Forms.AnchorStyles.Right)));
79      this.recommenderComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
80      this.recommenderComboBox.FormattingEnabled = true;
81      this.recommenderComboBox.Location = new System.Drawing.Point(90, 3);
82      this.recommenderComboBox.Name = "recommenderComboBox";
83      this.recommenderComboBox.Size = new System.Drawing.Size(206, 21);
84      this.recommenderComboBox.TabIndex = 11;
85      this.recommenderComboBox.SelectedIndexChanged += new System.EventHandler(this.RecommenderComboBoxOnSelectedIndexChanged);
86      //
87      // recommendStartButton
88      //
89      this.recommendStartButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
90      this.recommendStartButton.Location = new System.Drawing.Point(442, 1);
91      this.recommendStartButton.Name = "recommendStartButton";
92      this.recommendStartButton.Size = new System.Drawing.Size(26, 23);
93      this.recommendStartButton.TabIndex = 13;
94      this.recommendStartButton.Text = "Start";
95      this.recommendStartButton.UseVisualStyleBackColor = true;
96      this.recommendStartButton.Click += new System.EventHandler(this.RecommendStartButtonOnClick);
97      //
98      // tabControl
99      //
100      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
101            | System.Windows.Forms.AnchorStyles.Left)
102            | System.Windows.Forms.AnchorStyles.Right)));
103      this.tabControl.Controls.Add(this.characteristicsTabPage);
104      this.tabControl.Controls.Add(this.parametersTabPage);
105      this.tabControl.Controls.Add(this.crossvalidationTabPage);
106      this.tabControl.Location = new System.Drawing.Point(0, 30);
107      this.tabControl.Name = "tabControl";
108      this.tabControl.SelectedIndex = 0;
109      this.tabControl.Size = new System.Drawing.Size(700, 350);
110      this.tabControl.TabIndex = 14;
111      //
112      // characteristicsTabPage
113      //
114      this.characteristicsTabPage.Controls.Add(this.characteristicsViewHost);
115      this.characteristicsTabPage.Controls.Add(this.refreshCharacteristicsButton);
116      this.characteristicsTabPage.Location = new System.Drawing.Point(4, 22);
117      this.characteristicsTabPage.Name = "characteristicsTabPage";
118      this.characteristicsTabPage.Padding = new System.Windows.Forms.Padding(3);
119      this.characteristicsTabPage.Size = new System.Drawing.Size(692, 324);
120      this.characteristicsTabPage.TabIndex = 2;
121      this.characteristicsTabPage.Text = "Characteristics";
122      this.characteristicsTabPage.UseVisualStyleBackColor = true;
123      //
124      // characteristicsViewHost
125      //
126      this.characteristicsViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
127            | System.Windows.Forms.AnchorStyles.Left)
128            | System.Windows.Forms.AnchorStyles.Right)));
129      this.characteristicsViewHost.Caption = "View";
130      this.characteristicsViewHost.Content = null;
131      this.characteristicsViewHost.Enabled = false;
132      this.characteristicsViewHost.Location = new System.Drawing.Point(6, 35);
133      this.characteristicsViewHost.Name = "characteristicsViewHost";
134      this.characteristicsViewHost.ReadOnly = false;
135      this.characteristicsViewHost.Size = new System.Drawing.Size(680, 283);
136      this.characteristicsViewHost.TabIndex = 1;
137      this.characteristicsViewHost.ViewsLabelVisible = true;
138      this.characteristicsViewHost.ViewType = null;
139      //
140      // refreshCharacteristicsButton
141      //
142      this.refreshCharacteristicsButton.Location = new System.Drawing.Point(6, 6);
143      this.refreshCharacteristicsButton.Name = "refreshCharacteristicsButton";
144      this.refreshCharacteristicsButton.Size = new System.Drawing.Size(26, 23);
145      this.refreshCharacteristicsButton.TabIndex = 0;
146      this.refreshCharacteristicsButton.Text = "Refresh";
147      this.refreshCharacteristicsButton.UseVisualStyleBackColor = true;
148      this.refreshCharacteristicsButton.Click += new System.EventHandler(this.RefreshCharacteristicsButtonOnClick);
149      //
150      // parametersTabPage
151      //
152      this.parametersTabPage.Controls.Add(this.parameterCollectionView);
153      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
154      this.parametersTabPage.Name = "parametersTabPage";
155      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
156      this.parametersTabPage.Size = new System.Drawing.Size(692, 324);
157      this.parametersTabPage.TabIndex = 0;
158      this.parametersTabPage.Text = "Parameters";
159      this.parametersTabPage.UseVisualStyleBackColor = true;
160      //
161      // parameterCollectionView
162      //
163      this.parameterCollectionView.AllowEditingOfHiddenParameters = true;
164      this.parameterCollectionView.Caption = "ParameterCollection View";
165      this.parameterCollectionView.Content = null;
166      this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
167      this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
168      this.parameterCollectionView.Name = "parameterCollectionView";
169      this.parameterCollectionView.ReadOnly = false;
170      this.parameterCollectionView.ShowDetails = true;
171      this.parameterCollectionView.Size = new System.Drawing.Size(686, 318);
172      this.parameterCollectionView.TabIndex = 0;
173      //
174      // crossvalidationTabPage
175      //
176      this.crossvalidationTabPage.Controls.Add(this.xValidateButton);
177      this.crossvalidationTabPage.Location = new System.Drawing.Point(4, 22);
178      this.crossvalidationTabPage.Name = "crossvalidationTabPage";
179      this.crossvalidationTabPage.Padding = new System.Windows.Forms.Padding(3);
180      this.crossvalidationTabPage.Size = new System.Drawing.Size(692, 324);
181      this.crossvalidationTabPage.TabIndex = 1;
182      this.crossvalidationTabPage.Text = "Crossvalidation";
183      this.crossvalidationTabPage.UseVisualStyleBackColor = true;
184      //
185      // xValidateButton
186      //
187      this.xValidateButton.Location = new System.Drawing.Point(7, 7);
188      this.xValidateButton.Name = "xValidateButton";
189      this.xValidateButton.Size = new System.Drawing.Size(163, 23);
190      this.xValidateButton.TabIndex = 0;
191      this.xValidateButton.Text = "X-Validate Leave One Out";
192      this.xValidateButton.UseVisualStyleBackColor = true;
193      this.xValidateButton.Click += new System.EventHandler(this.xValidateButton_Click);
194      //
195      // minTargetView
196      //
197      this.minTargetView.Caption = "StringConvertibleValue View";
198      this.minTargetView.Content = null;
199      this.minTargetView.LabelVisible = false;
200      this.minTargetView.Location = new System.Drawing.Point(350, 3);
201      this.minTargetView.Name = "minTargetView";
202      this.minTargetView.ReadOnly = false;
203      this.minTargetView.Size = new System.Drawing.Size(86, 21);
204      this.minTargetView.TabIndex = 18;
205      //
206      // minimumTargetLabel
207      //
208      this.minimumTargetLabel.AutoSize = true;
209      this.minimumTargetLabel.Location = new System.Drawing.Point(311, 6);
210      this.minimumTargetLabel.Name = "minimumTargetLabel";
211      this.minimumTargetLabel.Size = new System.Drawing.Size(41, 13);
212      this.minimumTargetLabel.TabIndex = 17;
213      this.minimumTargetLabel.Text = "Target:";
214      //
215      // PerformanceModelingView
216      //
217      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
218      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
219      this.Controls.Add(this.minimumTargetLabel);
220      this.Controls.Add(this.minTargetView);
221      this.Controls.Add(this.tabControl);
222      this.Controls.Add(this.recommenderLabel);
223      this.Controls.Add(this.recommenderComboBox);
224      this.Controls.Add(this.recommendStartButton);
225      this.Name = "PerformanceModelingView";
226      this.tabControl.ResumeLayout(false);
227      this.characteristicsTabPage.ResumeLayout(false);
228      this.parametersTabPage.ResumeLayout(false);
229      this.crossvalidationTabPage.ResumeLayout(false);
230      this.ResumeLayout(false);
231      this.PerformLayout();
232
233    }
234
235    #endregion
236
237    private System.Windows.Forms.Label recommenderLabel;
238    private System.Windows.Forms.ComboBox recommenderComboBox;
239    private System.Windows.Forms.Button recommendStartButton;
240    private System.Windows.Forms.TabControl tabControl;
241    private System.Windows.Forms.TabPage parametersTabPage;
242    private System.Windows.Forms.TabPage crossvalidationTabPage;
243    private Core.Views.ParameterCollectionView parameterCollectionView;
244    private System.Windows.Forms.TabPage characteristicsTabPage;
245    private System.Windows.Forms.Button refreshCharacteristicsButton;
246    private MainForm.WindowsForms.ViewHost characteristicsViewHost;
247    private System.Windows.Forms.Button xValidateButton;
248    private Data.Views.StringConvertibleValueView minTargetView;
249    private System.Windows.Forms.Label minimumTargetLabel;
250  }
251}
Note: See TracBrowser for help on using the repository browser.