1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2016 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 |
|
---|
22 | namespace HeuristicLab.Problems.VehicleRouting.Views {
|
---|
23 | partial class VRPProblemInstanceView {
|
---|
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.pictureBox = new System.Windows.Forms.PictureBox();
|
---|
48 | this.tabControl1 = new System.Windows.Forms.TabControl();
|
---|
49 | this.tabPage1 = new System.Windows.Forms.TabPage();
|
---|
50 | this.tabPage2 = new System.Windows.Forms.TabPage();
|
---|
51 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
52 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
|
---|
53 | this.tabControl1.SuspendLayout();
|
---|
54 | this.tabPage1.SuspendLayout();
|
---|
55 | this.tabPage2.SuspendLayout();
|
---|
56 | this.SuspendLayout();
|
---|
57 | //
|
---|
58 | // parameterCollectionView
|
---|
59 | //
|
---|
60 | this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
|
---|
61 | this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
62 | this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
|
---|
63 | this.parameterCollectionView.Size = new System.Drawing.Size(448, 361);
|
---|
64 | //
|
---|
65 | // nameTextBox
|
---|
66 | //
|
---|
67 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
68 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
69 | this.nameTextBox.Size = new System.Drawing.Size(213, 20);
|
---|
70 | this.nameTextBox.Visible = false;
|
---|
71 | //
|
---|
72 | // nameLabel
|
---|
73 | //
|
---|
74 | this.nameLabel.Visible = false;
|
---|
75 | //
|
---|
76 | // pictureBox
|
---|
77 | //
|
---|
78 | this.pictureBox.BackColor = System.Drawing.Color.White;
|
---|
79 | this.pictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
---|
80 | this.pictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
81 | this.pictureBox.Location = new System.Drawing.Point(3, 3);
|
---|
82 | this.pictureBox.Name = "pictureBox";
|
---|
83 | this.pictureBox.Size = new System.Drawing.Size(448, 361);
|
---|
84 | this.pictureBox.TabIndex = 1;
|
---|
85 | this.pictureBox.TabStop = false;
|
---|
86 | this.pictureBox.SizeChanged += new System.EventHandler(this.pictureBox_SizeChanged);
|
---|
87 | this.pictureBox.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseClick);
|
---|
88 | //
|
---|
89 | // tabControl1
|
---|
90 | //
|
---|
91 | this.tabControl1.Controls.Add(this.tabPage1);
|
---|
92 | this.tabControl1.Controls.Add(this.tabPage2);
|
---|
93 | this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
94 | this.tabControl1.Location = new System.Drawing.Point(0, 0);
|
---|
95 | this.tabControl1.Name = "tabControl1";
|
---|
96 | this.tabControl1.SelectedIndex = 0;
|
---|
97 | this.tabControl1.Size = new System.Drawing.Size(462, 393);
|
---|
98 | this.tabControl1.TabIndex = 2;
|
---|
99 | //
|
---|
100 | // tabPage1
|
---|
101 | //
|
---|
102 | this.tabPage1.Controls.Add(this.pictureBox);
|
---|
103 | this.tabPage1.Location = new System.Drawing.Point(4, 22);
|
---|
104 | this.tabPage1.Name = "tabPage1";
|
---|
105 | this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
|
---|
106 | this.tabPage1.Size = new System.Drawing.Size(454, 367);
|
---|
107 | this.tabPage1.TabIndex = 0;
|
---|
108 | this.tabPage1.Text = "Visualization";
|
---|
109 | this.tabPage1.UseVisualStyleBackColor = true;
|
---|
110 | //
|
---|
111 | // tabPage2
|
---|
112 | //
|
---|
113 | this.tabPage2.Controls.Add(this.parameterCollectionView);
|
---|
114 | this.tabPage2.Location = new System.Drawing.Point(4, 22);
|
---|
115 | this.tabPage2.Name = "tabPage2";
|
---|
116 | this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
|
---|
117 | this.tabPage2.Size = new System.Drawing.Size(454, 367);
|
---|
118 | this.tabPage2.TabIndex = 1;
|
---|
119 | this.tabPage2.Text = "Parameters";
|
---|
120 | this.tabPage2.UseVisualStyleBackColor = true;
|
---|
121 | //
|
---|
122 | // VRPProblemInstanceView
|
---|
123 | //
|
---|
124 | this.Controls.Add(this.tabControl1);
|
---|
125 | this.Name = "VRPProblemInstanceView";
|
---|
126 | this.Size = new System.Drawing.Size(462, 393);
|
---|
127 | this.Controls.SetChildIndex(this.tabControl1, 0);
|
---|
128 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
129 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
130 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
131 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
132 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
|
---|
133 | this.tabControl1.ResumeLayout(false);
|
---|
134 | this.tabPage1.ResumeLayout(false);
|
---|
135 | this.tabPage2.ResumeLayout(false);
|
---|
136 | this.ResumeLayout(false);
|
---|
137 | this.PerformLayout();
|
---|
138 |
|
---|
139 | }
|
---|
140 | #endregion
|
---|
141 |
|
---|
142 | private System.Windows.Forms.PictureBox pictureBox;
|
---|
143 | private System.Windows.Forms.TabControl tabControl1;
|
---|
144 | private System.Windows.Forms.TabPage tabPage1;
|
---|
145 | private System.Windows.Forms.TabPage tabPage2;
|
---|
146 | }
|
---|
147 | }
|
---|