Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting.Views/3.4/CVRPPDTWEvaluationView.Designer.cs @ 17709

Last change on this file since 17709 was 17709, checked in by abeham, 4 years ago

#2521: working on VRP

File size: 5.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 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 CVRPPDTWEvaluationView {
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 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.pickupViolationsLabel = new System.Windows.Forms.Label();
48      this.pickupViolationsTextBox = new System.Windows.Forms.TextBox();
49      this.SuspendLayout();
50      //
51      // tardinessLabel
52      //
53      this.tardinessLabel.TabIndex = 15;
54      //
55      // travelTimeLabel
56      //
57      this.travelTimeLabel.TabIndex = 16;
58      //
59      // overloadLabel
60      //
61      this.overloadLabel.TabIndex = 14;
62      //
63      // qualityLabel
64      //
65      this.qualityLabel.TabIndex = 9;
66      //
67      // distanceLabel
68      //
69      this.distanceLabel.TabIndex = 10;
70      //
71      // vehiclesLabel
72      //
73      this.vehiclesLabel.TabIndex = 11;
74      //
75      // penaltyLabel
76      //
77      this.penaltyLabel.TabIndex = 12;
78      //
79      // feasibleLabel
80      //
81      this.feasibleLabel.TabIndex = 13;
82      //
83      // pickupViolationsLabel
84      //
85      this.pickupViolationsLabel.AutoSize = true;
86      this.pickupViolationsLabel.Location = new System.Drawing.Point(3, 199);
87      this.pickupViolationsLabel.Name = "pickupViolationsLabel";
88      this.pickupViolationsLabel.Size = new System.Drawing.Size(55, 26);
89      this.pickupViolationsLabel.TabIndex = 17;
90      this.pickupViolationsLabel.Text = "Pickup\r\nViolations:";
91      //
92      // pickupViolationsTextBox
93      //
94      this.pickupViolationsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
95            | System.Windows.Forms.AnchorStyles.Right)));
96      this.pickupViolationsTextBox.Location = new System.Drawing.Point(71, 205);
97      this.pickupViolationsTextBox.Name = "pickupViolationsTextBox";
98      this.pickupViolationsTextBox.ReadOnly = true;
99      this.pickupViolationsTextBox.Size = new System.Drawing.Size(149, 20);
100      this.pickupViolationsTextBox.TabIndex = 8;
101      //
102      // CVRPPDTWEvaluationView
103      //
104      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
105      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
106      this.Controls.Add(this.pickupViolationsTextBox);
107      this.Controls.Add(this.pickupViolationsLabel);
108      this.Name = "CVRPPDTWEvaluationView";
109      this.Size = new System.Drawing.Size(230, 236);
110      this.Controls.SetChildIndex(this.overloadLabel, 0);
111      this.Controls.SetChildIndex(this.overloadTextBox, 0);
112      this.Controls.SetChildIndex(this.qualityLabel, 0);
113      this.Controls.SetChildIndex(this.distanceLabel, 0);
114      this.Controls.SetChildIndex(this.vehiclesLabel, 0);
115      this.Controls.SetChildIndex(this.penaltyLabel, 0);
116      this.Controls.SetChildIndex(this.feasibleLabel, 0);
117      this.Controls.SetChildIndex(this.qualityTextBox, 0);
118      this.Controls.SetChildIndex(this.vehiclesTextBox, 0);
119      this.Controls.SetChildIndex(this.distanceTextBox, 0);
120      this.Controls.SetChildIndex(this.penaltyTextBox, 0);
121      this.Controls.SetChildIndex(this.isFeasibleCcheckBox, 0);
122      this.Controls.SetChildIndex(this.tardinessLabel, 0);
123      this.Controls.SetChildIndex(this.tardinessTextBox, 0);
124      this.Controls.SetChildIndex(this.travelTimeLabel, 0);
125      this.Controls.SetChildIndex(this.travelTimeTextBox, 0);
126      this.Controls.SetChildIndex(this.pickupViolationsLabel, 0);
127      this.Controls.SetChildIndex(this.pickupViolationsTextBox, 0);
128      this.ResumeLayout(false);
129      this.PerformLayout();
130
131    }
132
133    #endregion
134
135    private System.Windows.Forms.Label pickupViolationsLabel;
136    private System.Windows.Forms.TextBox pickupViolationsTextBox;
137  }
138}
Note: See TracBrowser for help on using the repository browser.