Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.TravelingSalesman.Views/3.3/TravelingSalesmanProblemView.Designer.cs @ 3505

Last change on this file since 3505 was 3505, checked in by swagner, 14 years ago

Implemented reviewers' comments (#893)

File size: 8.2 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
21
22namespace HeuristicLab.Problems.TravelingSalesman.Views {
23  partial class TravelingSalesmanProblemView {
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) {
35        if (tsplibImportDialog != null) tsplibImportDialog.Dispose();
36        if (components != null) 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.importButton = new System.Windows.Forms.Button();
49      this.tabControl = new System.Windows.Forms.TabControl();
50      this.parametersTabPage = new System.Windows.Forms.TabPage();
51      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
52      this.visualizationTabPage = new System.Windows.Forms.TabPage();
53      this.pathTSPTourView = new HeuristicLab.Problems.TravelingSalesman.Views.PathTSPTourView();
54      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
55      this.tabControl.SuspendLayout();
56      this.parametersTabPage.SuspendLayout();
57      this.visualizationTabPage.SuspendLayout();
58      this.SuspendLayout();
59      //
60      // nameTextBox
61      //
62      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
63      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
64      this.nameTextBox.Size = new System.Drawing.Size(457, 20);
65      //
66      // descriptionTextBox
67      //
68      this.descriptionTextBox.Size = new System.Drawing.Size(457, 20);
69      //
70      // importButton
71      //
72      this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
73                  | System.Windows.Forms.AnchorStyles.Right)));
74      this.importButton.Location = new System.Drawing.Point(0, 52);
75      this.importButton.Name = "importButton";
76      this.importButton.Size = new System.Drawing.Size(529, 23);
77      this.importButton.TabIndex = 4;
78      this.importButton.Text = "&Import from TSPLIB";
79      this.importButton.UseVisualStyleBackColor = true;
80      this.importButton.Click += new System.EventHandler(this.importButton_Click);
81      //
82      // tabControl
83      //
84      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
85                  | System.Windows.Forms.AnchorStyles.Left)
86                  | System.Windows.Forms.AnchorStyles.Right)));
87      this.tabControl.Controls.Add(this.parametersTabPage);
88      this.tabControl.Controls.Add(this.visualizationTabPage);
89      this.tabControl.Location = new System.Drawing.Point(0, 81);
90      this.tabControl.Name = "tabControl";
91      this.tabControl.SelectedIndex = 0;
92      this.tabControl.Size = new System.Drawing.Size(529, 341);
93      this.tabControl.TabIndex = 5;
94      //
95      // parametersTabPage
96      //
97      this.parametersTabPage.Controls.Add(this.parameterCollectionView);
98      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
99      this.parametersTabPage.Name = "parametersTabPage";
100      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
101      this.parametersTabPage.Size = new System.Drawing.Size(521, 315);
102      this.parametersTabPage.TabIndex = 0;
103      this.parametersTabPage.Text = "Parameters";
104      this.parametersTabPage.UseVisualStyleBackColor = true;
105      //
106      // parameterCollectionView
107      //
108      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
109                  | System.Windows.Forms.AnchorStyles.Left)
110                  | System.Windows.Forms.AnchorStyles.Right)));
111      this.parameterCollectionView.Caption = "ParameterCollection";
112      this.parameterCollectionView.Content = null;
113      this.parameterCollectionView.Location = new System.Drawing.Point(6, 6);
114      this.parameterCollectionView.Name = "parameterCollectionView";
115      this.parameterCollectionView.ReadOnly = false;
116      this.parameterCollectionView.Size = new System.Drawing.Size(509, 303);
117      this.parameterCollectionView.TabIndex = 0;
118      //
119      // visualizationTabPage
120      //
121      this.visualizationTabPage.Controls.Add(this.pathTSPTourView);
122      this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
123      this.visualizationTabPage.Name = "visualizationTabPage";
124      this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
125      this.visualizationTabPage.Size = new System.Drawing.Size(521, 315);
126      this.visualizationTabPage.TabIndex = 1;
127      this.visualizationTabPage.Text = "Visualization";
128      this.visualizationTabPage.UseVisualStyleBackColor = true;
129      //
130      // pathTSPTourView
131      //
132      this.pathTSPTourView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
133                  | System.Windows.Forms.AnchorStyles.Left)
134                  | System.Windows.Forms.AnchorStyles.Right)));
135      this.pathTSPTourView.Caption = "View";
136      this.pathTSPTourView.Content = null;
137      this.pathTSPTourView.Location = new System.Drawing.Point(6, 6);
138      this.pathTSPTourView.Name = "pathTSPTourView";
139      this.pathTSPTourView.ReadOnly = false;
140      this.pathTSPTourView.Size = new System.Drawing.Size(509, 303);
141      this.pathTSPTourView.TabIndex = 0;
142      //
143      // TravelingSalesmanProblemView
144      //
145      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
146      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
147      this.Controls.Add(this.tabControl);
148      this.Controls.Add(this.importButton);
149      this.Name = "TravelingSalesmanProblemView";
150      this.Size = new System.Drawing.Size(529, 422);
151      this.Controls.SetChildIndex(this.importButton, 0);
152      this.Controls.SetChildIndex(this.tabControl, 0);
153      this.Controls.SetChildIndex(this.nameLabel, 0);
154      this.Controls.SetChildIndex(this.descriptionLabel, 0);
155      this.Controls.SetChildIndex(this.nameTextBox, 0);
156      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
157      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
158      this.tabControl.ResumeLayout(false);
159      this.parametersTabPage.ResumeLayout(false);
160      this.visualizationTabPage.ResumeLayout(false);
161      this.ResumeLayout(false);
162      this.PerformLayout();
163
164    }
165
166    #endregion
167
168    private System.Windows.Forms.Button importButton;
169    private System.Windows.Forms.TabControl tabControl;
170    private System.Windows.Forms.TabPage parametersTabPage;
171    private System.Windows.Forms.TabPage visualizationTabPage;
172    private HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView;
173    private PathTSPTourView pathTSPTourView;
174
175  }
176}
Note: See TracBrowser for help on using the repository browser.