Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.VehicleRouting.Views/3.4/VRPSolutionView.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: 5.9 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 && (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.tabControl1 = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
48      this.tabPage1 = new System.Windows.Forms.TabPage();
49      this.problemInstanceView = new HeuristicLab.MainForm.WindowsForms.ViewHost();
50      this.tabPage2 = new System.Windows.Forms.TabPage();
51      this.tourGroupBox = new System.Windows.Forms.GroupBox();
52      this.valueTextBox = new System.Windows.Forms.TextBox();
53      this.tabControl1.SuspendLayout();
54      this.tabPage1.SuspendLayout();
55      this.tabPage2.SuspendLayout();
56      this.tourGroupBox.SuspendLayout();
57      this.SuspendLayout();
58      //
59      // tabControl1
60      //
61      this.tabControl1.Controls.Add(this.tabPage1);
62      this.tabControl1.Controls.Add(this.tabPage2);
63      this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
64      this.tabControl1.Location = new System.Drawing.Point(0, 0);
65      this.tabControl1.Name = "tabControl1";
66      this.tabControl1.SelectedIndex = 0;
67      this.tabControl1.Size = new System.Drawing.Size(468, 415);
68      this.tabControl1.TabIndex = 0;
69      //
70      // tabPage1
71      //
72      this.tabPage1.Controls.Add(this.problemInstanceView);
73      this.tabPage1.Location = new System.Drawing.Point(4, 22);
74      this.tabPage1.Name = "tabPage1";
75      this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
76      this.tabPage1.Size = new System.Drawing.Size(460, 389);
77      this.tabPage1.TabIndex = 0;
78      this.tabPage1.Text = "ProblemInstance";
79      this.tabPage1.UseVisualStyleBackColor = true;
80      //
81      // problemInstanceView
82      //
83      this.problemInstanceView.Caption = "View";
84      this.problemInstanceView.Content = null;
85      this.problemInstanceView.Dock = System.Windows.Forms.DockStyle.Fill;
86      this.problemInstanceView.Location = new System.Drawing.Point(3, 3);
87      this.problemInstanceView.Name = "problemInstanceView";
88      this.problemInstanceView.ReadOnly = false;
89      this.problemInstanceView.Size = new System.Drawing.Size(454, 383);
90      this.problemInstanceView.TabIndex = 0;
91      this.problemInstanceView.ViewType = null;
92      //
93      // tabPage2
94      //
95      this.tabPage2.Controls.Add(this.tourGroupBox);
96      this.tabPage2.Location = new System.Drawing.Point(4, 22);
97      this.tabPage2.Name = "tabPage2";
98      this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
99      this.tabPage2.Size = new System.Drawing.Size(460, 389);
100      this.tabPage2.TabIndex = 1;
101      this.tabPage2.Text = "Tours";
102      this.tabPage2.UseVisualStyleBackColor = true;
103      //
104      // tourGroupBox
105      //
106      this.tourGroupBox.Controls.Add(this.valueTextBox);
107      this.tourGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
108      this.tourGroupBox.Location = new System.Drawing.Point(3, 3);
109      this.tourGroupBox.Name = "tourGroupBox";
110      this.tourGroupBox.Size = new System.Drawing.Size(454, 383);
111      this.tourGroupBox.TabIndex = 1;
112      this.tourGroupBox.TabStop = false;
113      this.tourGroupBox.Text = "Tour";
114      //
115      // valueTextBox
116      //
117      this.valueTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
118      this.valueTextBox.Location = new System.Drawing.Point(3, 16);
119      this.valueTextBox.Multiline = true;
120      this.valueTextBox.Name = "valueTextBox";
121      this.valueTextBox.Size = new System.Drawing.Size(403, 507);
122      this.valueTextBox.TabIndex = 0;
123      this.valueTextBox.ReadOnly = true;
124      //
125      // VRPSolutionView
126      //
127      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
128      this.Controls.Add(this.tabControl1);
129      this.Name = "VRPSolutionView";
130      this.Size = new System.Drawing.Size(468, 415);
131      this.tabControl1.ResumeLayout(false);
132      this.tabPage1.ResumeLayout(false);
133      this.tabPage2.ResumeLayout(false);
134      this.tourGroupBox.ResumeLayout(false);
135      this.ResumeLayout(false);
136
137    }
138
139    #endregion
140
141    private HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl1;
142    private System.Windows.Forms.TabPage tabPage1;
143    private MainForm.WindowsForms.ViewHost problemInstanceView;
144    private System.Windows.Forms.TabPage tabPage2;
145    private System.Windows.Forms.GroupBox tourGroupBox;
146    private System.Windows.Forms.TextBox valueTextBox;
147  }
148}
Note: See TracBrowser for help on using the repository browser.