Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2520_PersistenceReintegration/HeuristicLab.Problems.PTSP.Views/3.3/ProbabilisticTravelingSalesmanProblemView.Designer.cs @ 16453

Last change on this file since 16453 was 16453, checked in by jkarder, 5 years ago

#2520: updated year of copyrights

File size: 6.9 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.PTSP.Views {
23  partial class ProbabilisticTravelingSalesmanProblemView {
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.pathPTSPTourView = new HeuristicLab.Problems.PTSP.Views.PathPTSPTourView();
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.Controls.Add(this.parameterCollectionView);
93      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
94      this.parametersTabPage.Name = "parametersTabPage";
95      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
96      this.parametersTabPage.Size = new System.Drawing.Size(503, 280);
97      this.parametersTabPage.TabIndex = 0;
98      this.parametersTabPage.Text = "Parameters";
99      this.parametersTabPage.UseVisualStyleBackColor = true;
100      //
101      // visualizationTabPage
102      //
103      this.visualizationTabPage.Controls.Add(this.pathPTSPTourView);
104      this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
105      this.visualizationTabPage.Name = "visualizationTabPage";
106      this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
107      this.visualizationTabPage.Size = new System.Drawing.Size(503, 280);
108      this.visualizationTabPage.TabIndex = 1;
109      this.visualizationTabPage.Text = "Visualization";
110      this.visualizationTabPage.UseVisualStyleBackColor = true;
111      //
112      // pathPTSPTourView
113      //
114      this.pathPTSPTourView.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.pathPTSPTourView.Caption = "PathPTSPTour View";
118      this.pathPTSPTourView.Content = null;
119      this.pathPTSPTourView.Location = new System.Drawing.Point(6, 6);
120      this.pathPTSPTourView.Name = "pathPTSPTourView";
121      this.pathPTSPTourView.ReadOnly = false;
122      this.pathPTSPTourView.Size = new System.Drawing.Size(491, 268);
123      this.pathPTSPTourView.TabIndex = 0;
124      //
125      // ProbabilisticTravelingSalesmanProblemView
126      //
127      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
128      this.Name = "ProbabilisticTravelingSalesmanProblemView";
129      this.problemInstanceSplitContainer.Panel1.ResumeLayout(false);
130      this.problemInstanceSplitContainer.Panel1.PerformLayout();
131      this.problemInstanceSplitContainer.Panel2.ResumeLayout(false);
132      this.problemInstanceSplitContainer.Panel2.PerformLayout();
133      ((System.ComponentModel.ISupportInitialize)(this.problemInstanceSplitContainer)).EndInit();
134      this.problemInstanceSplitContainer.ResumeLayout(false);
135      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
136      this.tabControl.ResumeLayout(false);
137      this.parametersTabPage.ResumeLayout(false);
138      this.visualizationTabPage.ResumeLayout(false);
139      this.ResumeLayout(false);
140
141    }
142
143    #endregion
144
145    private HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl;
146    private System.Windows.Forms.TabPage parametersTabPage;
147    private System.Windows.Forms.TabPage visualizationTabPage;
148    private PathPTSPTourView pathPTSPTourView;
149  }
150}
Note: See TracBrowser for help on using the repository browser.