Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.VehicleRouting.Views/3.3/VehicleRoutingProblemView.Designer.cs @ 3938

Last change on this file since 3938 was 3938, checked in by svonolfe, 14 years ago

Added CVRP implementation using the Alba encoding (#1039)

File size: 3.0 KB
RevLine 
[3938]1namespace HeuristicLab.Problems.VehicleRouting.Views {
2  partial class VehicleRoutingProblemView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.importButton = new System.Windows.Forms.Button();
27      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
28      this.SuspendLayout();
29      //
30      // parameterCollectionView
31      //
32      this.parameterCollectionView.Location = new System.Drawing.Point(0, 88);
33      this.parameterCollectionView.Size = new System.Drawing.Size(490, 334);
34      //
35      // nameTextBox
36      //
37      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
38      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
39      //
40      // importButton
41      //
42      this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
43                  | System.Windows.Forms.AnchorStyles.Right)));
44      this.importButton.Location = new System.Drawing.Point(0, 55);
45      this.importButton.Name = "importButton";
46      this.importButton.Size = new System.Drawing.Size(490, 23);
47      this.importButton.TabIndex = 5;
48      this.importButton.Text = "Import from Solomon";
49      this.importButton.UseVisualStyleBackColor = true;
50      this.importButton.Click += new System.EventHandler(this.importButton_Click);
51      //
52      // VehicleRoutingProblemView
53      //
54      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
55      this.Controls.Add(this.importButton);
56      this.Name = "VehicleRoutingProblemView";
57      this.Size = new System.Drawing.Size(490, 422);
58      this.Controls.SetChildIndex(this.importButton, 0);
59      this.Controls.SetChildIndex(this.nameTextBox, 0);
60      this.Controls.SetChildIndex(this.nameLabel, 0);
61      this.Controls.SetChildIndex(this.descriptionLabel, 0);
62      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
63      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
64      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
65      this.ResumeLayout(false);
66      this.PerformLayout();
67
68    }
69
70    #endregion
71
72    private System.Windows.Forms.Button importButton;
73  }
74}
Note: See TracBrowser for help on using the repository browser.