Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive.Azure/HeuristicLab.Problems.TravelingSalesman.Views/3.3/TravelingSalesmanProblemView.Designer.cs @ 7669

Last change on this file since 7669 was 7669, checked in by spimming, 12 years ago

#1680: merged changes from trunk into branch

File size: 7.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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    protected override void Dispose(bool disposing) {
30      if (disposing) {
31        if (components != null) components.Dispose();
32      }
33      base.Dispose(disposing);
34    }
35
36    #region Component Designer generated code
37
38    /// <summary>
39    /// Required method for Designer support - do not modify
40    /// the contents of this method with the code editor.
41    /// </summary>
42    private void InitializeComponent() {
43      this.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
44      this.parametersTabPage = new System.Windows.Forms.TabPage();
45      this.visualizationTabPage = new System.Windows.Forms.TabPage();
46      this.pathTSPTourView = new HeuristicLab.Problems.TravelingSalesman.Views.PathTSPTourView();
47      ((System.ComponentModel.ISupportInitialize)(this.problemInstanceSplitContainer)).BeginInit();
48      this.problemInstanceSplitContainer.Panel1.SuspendLayout();
49      this.problemInstanceSplitContainer.Panel2.SuspendLayout();
50      this.problemInstanceSplitContainer.SuspendLayout();
51      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
52      this.tabControl.SuspendLayout();
53      this.parametersTabPage.SuspendLayout();
54      this.visualizationTabPage.SuspendLayout();
55      this.SuspendLayout();
56      //
57      // libraryInfoButton
58      //
59      this.libraryInfoButton.Location = new System.Drawing.Point(224, 1);
60      //
61      // problemInstanceSplitContainer
62      //
63      //
64      // problemInstanceSplitContainer.Panel2
65      //
66      this.problemInstanceSplitContainer.Panel2.Controls.Add(this.tabControl);
67      //
68      // parameterCollectionView
69      //
70      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
71      this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
72      this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
73      this.parameterCollectionView.Size = new System.Drawing.Size(497, 274);
74      //
75      // nameTextBox
76      //
77      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
78      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
79      //
80      // tabControl
81      //
82      this.tabControl.AllowDrop = true;
83      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
84                  | System.Windows.Forms.AnchorStyles.Left)
85                  | System.Windows.Forms.AnchorStyles.Right)));
86      this.tabControl.Controls.Add(this.parametersTabPage);
87      this.tabControl.Controls.Add(this.visualizationTabPage);
88      this.tabControl.Location = new System.Drawing.Point(0, 27);
89      this.tabControl.Name = "tabControl";
90      this.tabControl.SelectedIndex = 0;
91      this.tabControl.Size = new System.Drawing.Size(511, 306);
92      this.tabControl.TabIndex = 4;
93      //
94      // parametersTabPage
95      //
96      this.parametersTabPage.Controls.Add(this.parameterCollectionView);
97      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
98      this.parametersTabPage.Name = "parametersTabPage";
99      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
100      this.parametersTabPage.Size = new System.Drawing.Size(503, 280);
101      this.parametersTabPage.TabIndex = 0;
102      this.parametersTabPage.Text = "Parameters";
103      this.parametersTabPage.UseVisualStyleBackColor = true;
104      //
105      // visualizationTabPage
106      //
107      this.visualizationTabPage.Controls.Add(this.pathTSPTourView);
108      this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
109      this.visualizationTabPage.Name = "visualizationTabPage";
110      this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
111      this.visualizationTabPage.Size = new System.Drawing.Size(503, 280);
112      this.visualizationTabPage.TabIndex = 1;
113      this.visualizationTabPage.Text = "Visualization";
114      this.visualizationTabPage.UseVisualStyleBackColor = true;
115      //
116      // pathTSPTourView
117      //
118      this.pathTSPTourView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
119                  | System.Windows.Forms.AnchorStyles.Left)
120                  | System.Windows.Forms.AnchorStyles.Right)));
121      this.pathTSPTourView.Caption = "PathTSPTour View";
122      this.pathTSPTourView.Content = null;
123      this.pathTSPTourView.Location = new System.Drawing.Point(6, 6);
124      this.pathTSPTourView.Name = "pathTSPTourView";
125      this.pathTSPTourView.ReadOnly = false;
126      this.pathTSPTourView.Size = new System.Drawing.Size(491, 268);
127      this.pathTSPTourView.TabIndex = 0;
128      //
129      // TravelingSalesmanProblemView
130      //
131      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
132      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
133      this.Name = "TravelingSalesmanProblemView";
134      this.problemInstanceSplitContainer.Panel1.ResumeLayout(false);
135      this.problemInstanceSplitContainer.Panel1.PerformLayout();
136      this.problemInstanceSplitContainer.Panel2.ResumeLayout(false);
137      this.problemInstanceSplitContainer.Panel2.PerformLayout();
138      ((System.ComponentModel.ISupportInitialize)(this.problemInstanceSplitContainer)).EndInit();
139      this.problemInstanceSplitContainer.ResumeLayout(false);
140      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
141      this.tabControl.ResumeLayout(false);
142      this.parametersTabPage.ResumeLayout(false);
143      this.visualizationTabPage.ResumeLayout(false);
144      this.ResumeLayout(false);
145
146    }
147
148    #endregion
149
150    private HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl;
151    private System.Windows.Forms.TabPage parametersTabPage;
152    private System.Windows.Forms.TabPage visualizationTabPage;
153    private PathTSPTourView pathTSPTourView;
154  }
155}
Note: See TracBrowser for help on using the repository browser.