[8924] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17226] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[8924] | 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 {
|
---|
[4374] | 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() {
|
---|
[5867] | 47 | this.tabControl1 = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
|
---|
[4374] | 48 | this.tabPage2 = new System.Windows.Forms.TabPage();
|
---|
| 49 | this.tourGroupBox = new System.Windows.Forms.GroupBox();
|
---|
[6607] | 50 | this.valueTextBox = new System.Windows.Forms.TextBox();
|
---|
[17710] | 51 | this.tabPage3 = new System.Windows.Forms.TabPage();
|
---|
| 52 | this.problemInstanceView = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
| 53 | this.tabPage1 = new System.Windows.Forms.TabPage();
|
---|
| 54 | this.evaluationViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
|
---|
[4374] | 55 | this.tabControl1.SuspendLayout();
|
---|
| 56 | this.tabPage2.SuspendLayout();
|
---|
| 57 | this.tourGroupBox.SuspendLayout();
|
---|
[17710] | 58 | this.tabPage3.SuspendLayout();
|
---|
| 59 | this.tabPage1.SuspendLayout();
|
---|
[4374] | 60 | this.SuspendLayout();
|
---|
| 61 | //
|
---|
| 62 | // tabControl1
|
---|
| 63 | //
|
---|
[17710] | 64 | this.tabControl1.AllowDrop = true;
|
---|
[4374] | 65 | this.tabControl1.Controls.Add(this.tabPage1);
|
---|
| 66 | this.tabControl1.Controls.Add(this.tabPage2);
|
---|
[17710] | 67 | this.tabControl1.Controls.Add(this.tabPage3);
|
---|
[4374] | 68 | this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 69 | this.tabControl1.Location = new System.Drawing.Point(0, 0);
|
---|
| 70 | this.tabControl1.Name = "tabControl1";
|
---|
| 71 | this.tabControl1.SelectedIndex = 0;
|
---|
| 72 | this.tabControl1.Size = new System.Drawing.Size(468, 415);
|
---|
| 73 | this.tabControl1.TabIndex = 0;
|
---|
| 74 | //
|
---|
| 75 | // tabPage2
|
---|
| 76 | //
|
---|
[16723] | 77 | this.tabPage2.BackColor = System.Drawing.SystemColors.Window;
|
---|
[4374] | 78 | this.tabPage2.Controls.Add(this.tourGroupBox);
|
---|
| 79 | this.tabPage2.Location = new System.Drawing.Point(4, 22);
|
---|
| 80 | this.tabPage2.Name = "tabPage2";
|
---|
| 81 | this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 82 | this.tabPage2.Size = new System.Drawing.Size(460, 389);
|
---|
| 83 | this.tabPage2.TabIndex = 1;
|
---|
| 84 | this.tabPage2.Text = "Tours";
|
---|
| 85 | //
|
---|
| 86 | // tourGroupBox
|
---|
| 87 | //
|
---|
[6607] | 88 | this.tourGroupBox.Controls.Add(this.valueTextBox);
|
---|
[4374] | 89 | this.tourGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 90 | this.tourGroupBox.Location = new System.Drawing.Point(3, 3);
|
---|
| 91 | this.tourGroupBox.Name = "tourGroupBox";
|
---|
| 92 | this.tourGroupBox.Size = new System.Drawing.Size(454, 383);
|
---|
| 93 | this.tourGroupBox.TabIndex = 1;
|
---|
| 94 | this.tourGroupBox.TabStop = false;
|
---|
| 95 | this.tourGroupBox.Text = "Tour";
|
---|
| 96 | //
|
---|
[6607] | 97 | // valueTextBox
|
---|
[4374] | 98 | //
|
---|
[6607] | 99 | this.valueTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 100 | this.valueTextBox.Location = new System.Drawing.Point(3, 16);
|
---|
| 101 | this.valueTextBox.Multiline = true;
|
---|
| 102 | this.valueTextBox.Name = "valueTextBox";
|
---|
[17710] | 103 | this.valueTextBox.ReadOnly = true;
|
---|
| 104 | this.valueTextBox.Size = new System.Drawing.Size(448, 364);
|
---|
[6607] | 105 | this.valueTextBox.TabIndex = 0;
|
---|
[4374] | 106 | //
|
---|
[17710] | 107 | // tabPage3
|
---|
| 108 | //
|
---|
| 109 | this.tabPage3.Controls.Add(this.evaluationViewHost);
|
---|
| 110 | this.tabPage3.Location = new System.Drawing.Point(4, 22);
|
---|
| 111 | this.tabPage3.Name = "tabPage3";
|
---|
| 112 | this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 113 | this.tabPage3.Size = new System.Drawing.Size(460, 389);
|
---|
| 114 | this.tabPage3.TabIndex = 2;
|
---|
| 115 | this.tabPage3.Text = "Evaluation";
|
---|
| 116 | this.tabPage3.UseVisualStyleBackColor = true;
|
---|
| 117 | //
|
---|
| 118 | // problemInstanceView
|
---|
| 119 | //
|
---|
| 120 | this.problemInstanceView.Caption = "View";
|
---|
| 121 | this.problemInstanceView.Content = null;
|
---|
| 122 | this.problemInstanceView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 123 | this.problemInstanceView.Enabled = false;
|
---|
| 124 | this.problemInstanceView.Location = new System.Drawing.Point(3, 3);
|
---|
| 125 | this.problemInstanceView.Name = "problemInstanceView";
|
---|
| 126 | this.problemInstanceView.ReadOnly = false;
|
---|
| 127 | this.problemInstanceView.Size = new System.Drawing.Size(454, 383);
|
---|
| 128 | this.problemInstanceView.TabIndex = 0;
|
---|
| 129 | this.problemInstanceView.ViewsLabelVisible = true;
|
---|
| 130 | this.problemInstanceView.ViewType = null;
|
---|
| 131 | //
|
---|
| 132 | // tabPage1
|
---|
| 133 | //
|
---|
| 134 | this.tabPage1.BackColor = System.Drawing.SystemColors.Window;
|
---|
| 135 | this.tabPage1.Controls.Add(this.problemInstanceView);
|
---|
| 136 | this.tabPage1.Location = new System.Drawing.Point(4, 22);
|
---|
| 137 | this.tabPage1.Name = "tabPage1";
|
---|
| 138 | this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
|
---|
| 139 | this.tabPage1.Size = new System.Drawing.Size(460, 389);
|
---|
| 140 | this.tabPage1.TabIndex = 0;
|
---|
| 141 | this.tabPage1.Text = "ProblemInstance";
|
---|
| 142 | //
|
---|
| 143 | // evaluationViewHost
|
---|
| 144 | //
|
---|
| 145 | this.evaluationViewHost.Caption = "View";
|
---|
| 146 | this.evaluationViewHost.Content = null;
|
---|
| 147 | this.evaluationViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
| 148 | this.evaluationViewHost.Enabled = false;
|
---|
| 149 | this.evaluationViewHost.Location = new System.Drawing.Point(3, 3);
|
---|
| 150 | this.evaluationViewHost.Name = "evaluationViewHost";
|
---|
| 151 | this.evaluationViewHost.ReadOnly = false;
|
---|
| 152 | this.evaluationViewHost.Size = new System.Drawing.Size(454, 383);
|
---|
| 153 | this.evaluationViewHost.TabIndex = 2;
|
---|
| 154 | this.evaluationViewHost.ViewsLabelVisible = true;
|
---|
| 155 | this.evaluationViewHost.ViewType = null;
|
---|
| 156 | //
|
---|
[4374] | 157 | // VRPSolutionView
|
---|
| 158 | //
|
---|
| 159 | this.Controls.Add(this.tabControl1);
|
---|
| 160 | this.Name = "VRPSolutionView";
|
---|
| 161 | this.Size = new System.Drawing.Size(468, 415);
|
---|
| 162 | this.tabControl1.ResumeLayout(false);
|
---|
| 163 | this.tabPage2.ResumeLayout(false);
|
---|
| 164 | this.tourGroupBox.ResumeLayout(false);
|
---|
[17710] | 165 | this.tourGroupBox.PerformLayout();
|
---|
| 166 | this.tabPage3.ResumeLayout(false);
|
---|
| 167 | this.tabPage1.ResumeLayout(false);
|
---|
[4374] | 168 | this.ResumeLayout(false);
|
---|
| 169 |
|
---|
| 170 | }
|
---|
| 171 |
|
---|
| 172 | #endregion
|
---|
| 173 |
|
---|
[5867] | 174 | private HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl1;
|
---|
[4374] | 175 | private System.Windows.Forms.TabPage tabPage2;
|
---|
| 176 | private System.Windows.Forms.GroupBox tourGroupBox;
|
---|
[6607] | 177 | private System.Windows.Forms.TextBox valueTextBox;
|
---|
[17710] | 178 | private System.Windows.Forms.TabPage tabPage3;
|
---|
| 179 | private System.Windows.Forms.TabPage tabPage1;
|
---|
| 180 | private MainForm.WindowsForms.ViewHost problemInstanceView;
|
---|
| 181 | private MainForm.WindowsForms.ViewHost evaluationViewHost;
|
---|
[4374] | 182 | }
|
---|
| 183 | }
|
---|