Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.VehicleRouting.Views/3.3/VehicleRoutingProblemView.Designer.cs @ 9456

Last change on this file since 9456 was 9456, checked in by swagner, 11 years ago

Updated copyright year and added some missing license headers (#1889)

File size: 7.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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.VehicleRouting.Views {
23  partial class VehicleRoutingProblemView {
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 && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.importButton = new System.Windows.Forms.Button();
48      this.tabControl1 = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
49      this.tabPage1 = new System.Windows.Forms.TabPage();
50      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
51      this.tabPage2 = new System.Windows.Forms.TabPage();
52      this.vrpSolutionView = new HeuristicLab.Problems.VehicleRouting.Views.VRPSolutionView();
53      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
54      this.tabControl1.SuspendLayout();
55      this.tabPage1.SuspendLayout();
56      this.tabPage2.SuspendLayout();
57      this.SuspendLayout();
58      //
59      // nameTextBox
60      //
61      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
62      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
63      this.nameTextBox.Location = new System.Drawing.Point(60, 0);
64      this.nameTextBox.Size = new System.Drawing.Size(405, 20);
65      //
66      // infoLabel
67      //
68      this.infoLabel.Location = new System.Drawing.Point(471, 3);
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, 26);
75      this.importButton.Name = "importButton";
76      this.importButton.Size = new System.Drawing.Size(490, 23);
77      this.importButton.TabIndex = 3;
78      this.importButton.Text = "Import";
79      this.importButton.UseVisualStyleBackColor = true;
80      this.importButton.Click += new System.EventHandler(this.importButton_Click);
81      //
82      // tabControl1
83      //
84      this.tabControl1.AllowDrop = true;
85      this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
86                  | System.Windows.Forms.AnchorStyles.Left)
87                  | System.Windows.Forms.AnchorStyles.Right)));
88      this.tabControl1.Controls.Add(this.tabPage1);
89      this.tabControl1.Controls.Add(this.tabPage2);
90      this.tabControl1.Location = new System.Drawing.Point(0, 55);
91      this.tabControl1.Name = "tabControl1";
92      this.tabControl1.SelectedIndex = 0;
93      this.tabControl1.Size = new System.Drawing.Size(490, 307);
94      this.tabControl1.TabIndex = 4;
95      //
96      // tabPage1
97      //
98      this.tabPage1.Controls.Add(this.parameterCollectionView);
99      this.tabPage1.Location = new System.Drawing.Point(4, 22);
100      this.tabPage1.Name = "tabPage1";
101      this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
102      this.tabPage1.Size = new System.Drawing.Size(482, 281);
103      this.tabPage1.TabIndex = 0;
104      this.tabPage1.Text = "Parameters";
105      this.tabPage1.UseVisualStyleBackColor = true;
106      //
107      // parameterCollectionView
108      //
109      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
110                  | System.Windows.Forms.AnchorStyles.Left)
111                  | System.Windows.Forms.AnchorStyles.Right)));
112      this.parameterCollectionView.Caption = "ParameterCollection View";
113      this.parameterCollectionView.Content = null;
114      this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
115      this.parameterCollectionView.Name = "parameterCollectionView";
116      this.parameterCollectionView.ReadOnly = false;
117      this.parameterCollectionView.Size = new System.Drawing.Size(476, 275);
118      this.parameterCollectionView.TabIndex = 0;
119      //
120      // tabPage2
121      //
122      this.tabPage2.Controls.Add(this.vrpSolutionView);
123      this.tabPage2.Location = new System.Drawing.Point(4, 22);
124      this.tabPage2.Name = "tabPage2";
125      this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
126      this.tabPage2.Size = new System.Drawing.Size(482, 281);
127      this.tabPage2.TabIndex = 1;
128      this.tabPage2.Text = "Visualization";
129      this.tabPage2.UseVisualStyleBackColor = true;
130      //
131      // vrpSolutionView
132      //
133      this.vrpSolutionView.Caption = "VRPSolution View";
134      this.vrpSolutionView.Content = null;
135      this.vrpSolutionView.Dock = System.Windows.Forms.DockStyle.Fill;
136      this.vrpSolutionView.Location = new System.Drawing.Point(3, 3);
137      this.vrpSolutionView.Name = "vrpSolutionView";
138      this.vrpSolutionView.ReadOnly = false;
139      this.vrpSolutionView.Size = new System.Drawing.Size(476, 275);
140      this.vrpSolutionView.TabIndex = 0;
141      //
142      // VehicleRoutingProblemView
143      //
144      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
145      this.Controls.Add(this.tabControl1);
146      this.Controls.Add(this.importButton);
147      this.Name = "VehicleRoutingProblemView";
148      this.Size = new System.Drawing.Size(490, 365);
149      this.Controls.SetChildIndex(this.importButton, 0);
150      this.Controls.SetChildIndex(this.infoLabel, 0);
151      this.Controls.SetChildIndex(this.tabControl1, 0);
152      this.Controls.SetChildIndex(this.nameTextBox, 0);
153      this.Controls.SetChildIndex(this.nameLabel, 0);
154      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
155      this.tabControl1.ResumeLayout(false);
156      this.tabPage1.ResumeLayout(false);
157      this.tabPage2.ResumeLayout(false);
158      this.ResumeLayout(false);
159      this.PerformLayout();
160
161    }
162
163    #endregion
164
165    private System.Windows.Forms.Button importButton;
166    private HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl1;
167    private System.Windows.Forms.TabPage tabPage1;
168    private System.Windows.Forms.TabPage tabPage2;
169    private Core.Views.ParameterCollectionView parameterCollectionView;
170    private VRPSolutionView vrpSolutionView;
171  }
172}
Note: See TracBrowser for help on using the repository browser.