Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 4019 was 3764, checked in by mkommend, 14 years ago

adapted view captions (ticket #893)

File size: 8.1 KB
RevLine 
[2805]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
[3158]22namespace HeuristicLab.Problems.TravelingSalesman.Views {
[3159]23  partial class TravelingSalesmanProblemView {
[2805]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) {
[3151]35        if (tsplibImportDialog != null) tsplibImportDialog.Dispose();
[2805]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();
[3153]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();
[3158]53      this.pathTSPTourView = new HeuristicLab.Problems.TravelingSalesman.Views.PathTSPTourView();
[2805]54      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
[3153]55      this.tabControl.SuspendLayout();
56      this.parametersTabPage.SuspendLayout();
57      this.visualizationTabPage.SuspendLayout();
[2805]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);
[2882]64      this.nameTextBox.Size = new System.Drawing.Size(457, 20);
[2805]65      //
[2882]66      // descriptionTextBox
67      //
[2917]68      this.descriptionTextBox.Size = new System.Drawing.Size(457, 20);
[2882]69      //
[2805]70      // importButton
71      //
[3505]72      this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
[2805]73                  | System.Windows.Forms.AnchorStyles.Right)));
[3505]74      this.importButton.Location = new System.Drawing.Point(0, 52);
[2805]75      this.importButton.Name = "importButton";
[2882]76      this.importButton.Size = new System.Drawing.Size(529, 23);
[3505]77      this.importButton.TabIndex = 4;
[2805]78      this.importButton.Text = "&Import from TSPLIB";
79      this.importButton.UseVisualStyleBackColor = true;
80      this.importButton.Click += new System.EventHandler(this.importButton_Click);
81      //
[3153]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);
[3505]89      this.tabControl.Location = new System.Drawing.Point(0, 81);
[3153]90      this.tabControl.Name = "tabControl";
91      this.tabControl.SelectedIndex = 0;
92      this.tabControl.Size = new System.Drawing.Size(529, 341);
[3505]93      this.tabControl.TabIndex = 5;
[3153]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.Content = null;
112      this.parameterCollectionView.Location = new System.Drawing.Point(6, 6);
113      this.parameterCollectionView.Name = "parameterCollectionView";
[3505]114      this.parameterCollectionView.ReadOnly = false;
[3153]115      this.parameterCollectionView.Size = new System.Drawing.Size(509, 303);
116      this.parameterCollectionView.TabIndex = 0;
117      //
118      // visualizationTabPage
119      //
120      this.visualizationTabPage.Controls.Add(this.pathTSPTourView);
121      this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
122      this.visualizationTabPage.Name = "visualizationTabPage";
123      this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
124      this.visualizationTabPage.Size = new System.Drawing.Size(521, 315);
125      this.visualizationTabPage.TabIndex = 1;
126      this.visualizationTabPage.Text = "Visualization";
127      this.visualizationTabPage.UseVisualStyleBackColor = true;
128      //
129      // pathTSPTourView
130      //
131      this.pathTSPTourView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
132                  | System.Windows.Forms.AnchorStyles.Left)
133                  | System.Windows.Forms.AnchorStyles.Right)));
134      this.pathTSPTourView.Content = null;
135      this.pathTSPTourView.Location = new System.Drawing.Point(6, 6);
136      this.pathTSPTourView.Name = "pathTSPTourView";
[3505]137      this.pathTSPTourView.ReadOnly = false;
[3153]138      this.pathTSPTourView.Size = new System.Drawing.Size(509, 303);
139      this.pathTSPTourView.TabIndex = 0;
140      //
[3159]141      // TravelingSalesmanProblemView
[2805]142      //
143      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
144      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[3153]145      this.Controls.Add(this.tabControl);
[2805]146      this.Controls.Add(this.importButton);
[3159]147      this.Name = "TravelingSalesmanProblemView";
[2882]148      this.Size = new System.Drawing.Size(529, 422);
[2805]149      this.Controls.SetChildIndex(this.importButton, 0);
[3153]150      this.Controls.SetChildIndex(this.tabControl, 0);
[2805]151      this.Controls.SetChildIndex(this.nameLabel, 0);
152      this.Controls.SetChildIndex(this.descriptionLabel, 0);
153      this.Controls.SetChildIndex(this.nameTextBox, 0);
154      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
155      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
[3153]156      this.tabControl.ResumeLayout(false);
157      this.parametersTabPage.ResumeLayout(false);
158      this.visualizationTabPage.ResumeLayout(false);
[2805]159      this.ResumeLayout(false);
160      this.PerformLayout();
161
162    }
163
164    #endregion
165
166    private System.Windows.Forms.Button importButton;
[3153]167    private System.Windows.Forms.TabControl tabControl;
168    private System.Windows.Forms.TabPage parametersTabPage;
169    private System.Windows.Forms.TabPage visualizationTabPage;
170    private HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView;
171    private PathTSPTourView pathTSPTourView;
[2805]172
173  }
174}
Note: See TracBrowser for help on using the repository browser.