Free cookie consent management tool by TermsFeed Policy Generator

source: branches/VRP/HeuristicLab.Problems.VehicleRouting.Views/3.4/VehicleRoutingProblemView.Designer.cs @ 4362

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

Added initial version - WIP (#1177)

File size: 4.9 KB
Line 
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      this.importButton2 = new System.Windows.Forms.Button();
28      this.importButton3 = new System.Windows.Forms.Button();
29      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
30      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
31      this.SuspendLayout();
32      //
33      // nameTextBox
34      //
35      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
36      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
37      //
38      // importButton
39      //
40      this.importButton.Location = new System.Drawing.Point(0, 55);
41      this.importButton.Name = "importButton";
42      this.importButton.Size = new System.Drawing.Size(139, 23);
43      this.importButton.TabIndex = 5;
44      this.importButton.Text = "Import from Solomon";
45      this.importButton.UseVisualStyleBackColor = true;
46      this.importButton.Click += new System.EventHandler(this.importButton_Click);
47      //
48      // importButton2
49      //
50      this.importButton2.Location = new System.Drawing.Point(145, 55);
51      this.importButton2.Name = "importButton2";
52      this.importButton2.Size = new System.Drawing.Size(126, 23);
53      this.importButton2.TabIndex = 7;
54      this.importButton2.Text = "Import from TSPLib";
55      this.importButton2.UseVisualStyleBackColor = true;
56      this.importButton2.Click += new System.EventHandler(this.importButton2_Click);
57      //
58      // importButton3
59      //
60      this.importButton3.Location = new System.Drawing.Point(277, 55);
61      this.importButton3.Name = "importButton3";
62      this.importButton3.Size = new System.Drawing.Size(131, 23);
63      this.importButton3.TabIndex = 8;
64      this.importButton3.Text = "Import from ORLib";
65      this.importButton3.UseVisualStyleBackColor = true;
66      this.importButton3.Click += new System.EventHandler(this.importButton3_Click);
67      //
68      // parameterCollectionView
69      //
70      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
71                  | System.Windows.Forms.AnchorStyles.Left)
72                  | System.Windows.Forms.AnchorStyles.Right)));
73      this.parameterCollectionView.Caption = "ParameterCollection View";
74      this.parameterCollectionView.Content = null;
75      this.parameterCollectionView.Location = new System.Drawing.Point(0, 84);
76      this.parameterCollectionView.Name = "parameterCollectionView";
77      this.parameterCollectionView.ReadOnly = false;
78      this.parameterCollectionView.Size = new System.Drawing.Size(490, 268);
79      this.parameterCollectionView.TabIndex = 9;
80      //
81      // VehicleRoutingProblemView
82      //
83      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
84      this.Controls.Add(this.parameterCollectionView);
85      this.Controls.Add(this.importButton3);
86      this.Controls.Add(this.importButton2);
87      this.Controls.Add(this.importButton);
88      this.Name = "VehicleRoutingProblemView";
89      this.Size = new System.Drawing.Size(490, 352);
90      this.Controls.SetChildIndex(this.importButton, 0);
91      this.Controls.SetChildIndex(this.importButton2, 0);
92      this.Controls.SetChildIndex(this.importButton3, 0);
93      this.Controls.SetChildIndex(this.nameTextBox, 0);
94      this.Controls.SetChildIndex(this.nameLabel, 0);
95      this.Controls.SetChildIndex(this.descriptionLabel, 0);
96      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
97      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
98      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
99      this.ResumeLayout(false);
100      this.PerformLayout();
101
102    }
103
104    #endregion
105
106    private System.Windows.Forms.Button importButton;
107    private System.Windows.Forms.Button importButton2;
108    private System.Windows.Forms.Button importButton3;
109    private Core.Views.ParameterCollectionView parameterCollectionView;
110  }
111}
Note: See TracBrowser for help on using the repository browser.