Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2520_PersistenceReintegration/HeuristicLab.Problems.TravelingSalesman.Views/3.3/TravelingSalesmanProblemView.Designer.cs @ 16529

Last change on this file since 16529 was 16529, checked in by gkronber, 5 years ago

#2520: merged r16491:16528 from trunk to persistence branch

File size: 7.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2019 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      // problemInstanceSplitContainer
58      //
59      //
60      // problemInstanceSplitContainer.Panel2
61      //
62      this.problemInstanceSplitContainer.Panel2.Controls.Add(this.tabControl);
63      //
64      // parameterCollectionView
65      //
66      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
67      this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
68      this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
69      this.parameterCollectionView.Size = new System.Drawing.Size(497, 274);
70      //
71      // nameTextBox
72      //
73      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
74      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
75      //
76      // tabControl
77      //
78      this.tabControl.AllowDrop = true;
79      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
80                  | System.Windows.Forms.AnchorStyles.Left)
81                  | System.Windows.Forms.AnchorStyles.Right)));
82      this.tabControl.Controls.Add(this.parametersTabPage);
83      this.tabControl.Controls.Add(this.visualizationTabPage);
84      this.tabControl.Location = new System.Drawing.Point(0, 27);
85      this.tabControl.Name = "tabControl";
86      this.tabControl.SelectedIndex = 0;
87      this.tabControl.Size = new System.Drawing.Size(511, 306);
88      this.tabControl.TabIndex = 4;
89      //
90      // parametersTabPage
91      //
92      this.parametersTabPage.BackColor = System.Drawing.SystemColors.Window;
93      this.parametersTabPage.Controls.Add(this.parameterCollectionView);
94      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
95      this.parametersTabPage.Name = "parametersTabPage";
96      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
97      this.parametersTabPage.Size = new System.Drawing.Size(503, 280);
98      this.parametersTabPage.TabIndex = 0;
99      this.parametersTabPage.Text = "Parameters";
100      //
101      // visualizationTabPage
102      //
103      this.visualizationTabPage.BackColor = System.Drawing.SystemColors.Window;
104      this.visualizationTabPage.Controls.Add(this.pathTSPTourView);
105      this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
106      this.visualizationTabPage.Name = "visualizationTabPage";
107      this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
108      this.visualizationTabPage.Size = new System.Drawing.Size(503, 280);
109      this.visualizationTabPage.TabIndex = 1;
110      this.visualizationTabPage.Text = "Visualization";
111      //
112      // pathTSPTourView
113      //
114      this.pathTSPTourView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
115                  | System.Windows.Forms.AnchorStyles.Left)
116                  | System.Windows.Forms.AnchorStyles.Right)));
117      this.pathTSPTourView.Caption = "PathTSPTour View";
118      this.pathTSPTourView.Content = null;
119      this.pathTSPTourView.Location = new System.Drawing.Point(6, 6);
120      this.pathTSPTourView.Name = "pathTSPTourView";
121      this.pathTSPTourView.ReadOnly = false;
122      this.pathTSPTourView.Size = new System.Drawing.Size(491, 268);
123      this.pathTSPTourView.TabIndex = 0;
124      //
125      // TravelingSalesmanProblemView
126      //
127      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
128      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
129      this.Name = "TravelingSalesmanProblemView";
130      this.problemInstanceSplitContainer.Panel1.ResumeLayout(false);
131      this.problemInstanceSplitContainer.Panel1.PerformLayout();
132      this.problemInstanceSplitContainer.Panel2.ResumeLayout(false);
133      this.problemInstanceSplitContainer.Panel2.PerformLayout();
134      ((System.ComponentModel.ISupportInitialize)(this.problemInstanceSplitContainer)).EndInit();
135      this.problemInstanceSplitContainer.ResumeLayout(false);
136      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
137      this.tabControl.ResumeLayout(false);
138      this.parametersTabPage.ResumeLayout(false);
139      this.visualizationTabPage.ResumeLayout(false);
140      this.ResumeLayout(false);
141
142    }
143
144    #endregion
145
146    private HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl;
147    private System.Windows.Forms.TabPage parametersTabPage;
148    private System.Windows.Forms.TabPage visualizationTabPage;
149    private PathTSPTourView pathTSPTourView;
150  }
151}
Note: See TracBrowser for help on using the repository browser.