Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.VehicleRouting.Views/3.3/VRPSolutionView.Designer.cs @ 9462

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

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

File size: 6.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 VRPSolutionView {
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) {
35        if (components != null) components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component 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.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
48      this.visualizationTabPage = new System.Windows.Forms.TabPage();
49      this.pictureBox = new System.Windows.Forms.PictureBox();
50      this.valueTabPage = new System.Windows.Forms.TabPage();
51      this.tourGroupBox = new System.Windows.Forms.GroupBox();
52      this.valueTextBox = new System.Windows.Forms.TextBox();
53      this.tabControl.SuspendLayout();
54      this.visualizationTabPage.SuspendLayout();
55      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
56      this.valueTabPage.SuspendLayout();
57      this.tourGroupBox.SuspendLayout();
58      this.SuspendLayout();
59      //
60      // tabControl
61      //
62      this.tabControl.AllowDrop = true;
63      this.tabControl.Controls.Add(this.visualizationTabPage);
64      this.tabControl.Controls.Add(this.valueTabPage);
65      this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
66      this.tabControl.Location = new System.Drawing.Point(0, 0);
67      this.tabControl.Name = "tabControl";
68      this.tabControl.SelectedIndex = 0;
69      this.tabControl.Size = new System.Drawing.Size(423, 558);
70      this.tabControl.TabIndex = 1;
71      //
72      // visualizationTabPage
73      //
74      this.visualizationTabPage.Controls.Add(this.pictureBox);
75      this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
76      this.visualizationTabPage.Name = "visualizationTabPage";
77      this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
78      this.visualizationTabPage.Size = new System.Drawing.Size(415, 532);
79      this.visualizationTabPage.TabIndex = 0;
80      this.visualizationTabPage.Text = "Visualization";
81      this.visualizationTabPage.UseVisualStyleBackColor = true;
82      //
83      // pictureBox
84      //
85      this.pictureBox.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.pictureBox.BackColor = System.Drawing.Color.White;
89      this.pictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
90      this.pictureBox.Location = new System.Drawing.Point(6, 6);
91      this.pictureBox.Name = "pictureBox";
92      this.pictureBox.Size = new System.Drawing.Size(403, 520);
93      this.pictureBox.TabIndex = 0;
94      this.pictureBox.TabStop = false;
95      this.pictureBox.SizeChanged += new System.EventHandler(this.pictureBox_SizeChanged);
96      //
97      // valueTabPage
98      //
99      this.valueTabPage.Controls.Add(this.tourGroupBox);
100      this.valueTabPage.Location = new System.Drawing.Point(4, 22);
101      this.valueTabPage.Name = "valueTabPage";
102      this.valueTabPage.Padding = new System.Windows.Forms.Padding(3);
103      this.valueTabPage.Size = new System.Drawing.Size(415, 532);
104      this.valueTabPage.TabIndex = 1;
105      this.valueTabPage.Text = "Value";
106      this.valueTabPage.UseVisualStyleBackColor = true;
107      //
108      // tourGroupBox
109      //
110      this.tourGroupBox.Controls.Add(this.valueTextBox);
111      this.tourGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
112      this.tourGroupBox.Location = new System.Drawing.Point(3, 3);
113      this.tourGroupBox.Name = "tourGroupBox";
114      this.tourGroupBox.Size = new System.Drawing.Size(409, 526);
115      this.tourGroupBox.TabIndex = 0;
116      this.tourGroupBox.TabStop = false;
117      this.tourGroupBox.Text = "Tour";
118      //
119      // valueTextBox
120      //
121      this.valueTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
122      this.valueTextBox.Location = new System.Drawing.Point(3, 16);
123      this.valueTextBox.Multiline = true;
124      this.valueTextBox.Name = "valueTextBox";
125      this.valueTextBox.Size = new System.Drawing.Size(403, 507);
126      this.valueTextBox.TabIndex = 0;
127      //
128      // VRPSolutionView
129      //
130      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
131      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
132      this.Controls.Add(this.tabControl);
133      this.Name = "VRPSolutionView";
134      this.Size = new System.Drawing.Size(423, 558);
135      this.tabControl.ResumeLayout(false);
136      this.visualizationTabPage.ResumeLayout(false);
137      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
138      this.valueTabPage.ResumeLayout(false);
139      this.tourGroupBox.ResumeLayout(false);
140      this.tourGroupBox.PerformLayout();
141      this.ResumeLayout(false);
142
143    }
144
145    #endregion
146
147    private HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl;
148    private System.Windows.Forms.TabPage visualizationTabPage;
149    private System.Windows.Forms.PictureBox pictureBox;
150    private System.Windows.Forms.TabPage valueTabPage;
151    private System.Windows.Forms.GroupBox tourGroupBox;
152    private System.Windows.Forms.TextBox valueTextBox;
153
154
155
156  }
157}
Note: See TracBrowser for help on using the repository browser.