Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 6851 was 5867, checked in by svonolfe, 13 years ago

Merged changes from trunk into branch (#1177)

File size: 3.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.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
28      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
29      this.SuspendLayout();
30      //
31      // nameTextBox
32      //
33      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
34      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
35      this.nameTextBox.Location = new System.Drawing.Point(60, 0);
36      this.nameTextBox.Size = new System.Drawing.Size(405, 20);
37      //
38      // infoLabel
39      //
40      this.infoLabel.Location = new System.Drawing.Point(471, 3);
41      //
42      // importButton
43      //
44      this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
45                  | System.Windows.Forms.AnchorStyles.Right)));
46      this.importButton.Location = new System.Drawing.Point(0, 26);
47      this.importButton.Name = "importButton";
48      this.importButton.Size = new System.Drawing.Size(490, 23);
49      this.importButton.TabIndex = 5;
50      this.importButton.Text = "Import";
51      this.importButton.UseVisualStyleBackColor = true;
52      this.importButton.Click += new System.EventHandler(this.importButton_Click);
53      //
54      // parameterCollectionView
55      //
56      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
57                  | System.Windows.Forms.AnchorStyles.Left)
58                  | System.Windows.Forms.AnchorStyles.Right)));
59      this.parameterCollectionView.Caption = "ParameterCollection View";
60      this.parameterCollectionView.Content = null;
61      this.parameterCollectionView.Location = new System.Drawing.Point(0, 55);
62      this.parameterCollectionView.Name = "parameterCollectionView";
63      this.parameterCollectionView.ReadOnly = false;
64      this.parameterCollectionView.Size = new System.Drawing.Size(490, 210);
65      this.parameterCollectionView.TabIndex = 9;
66      //
67      // VehicleRoutingProblemView
68      //
69      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
70      this.Controls.Add(this.parameterCollectionView);
71      this.Controls.Add(this.importButton);
72      this.Name = "VehicleRoutingProblemView";
73      this.Size = new System.Drawing.Size(490, 275);
74      this.Controls.SetChildIndex(this.importButton, 0);
75      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
76      this.Controls.SetChildIndex(this.nameTextBox, 0);
77      this.Controls.SetChildIndex(this.nameLabel, 0);
78      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
79      this.ResumeLayout(false);
80      this.PerformLayout();
81
82    }
83
84    #endregion
85
86    private System.Windows.Forms.Button importButton;
87    private Core.Views.ParameterCollectionView parameterCollectionView;
88  }
89}
Note: See TracBrowser for help on using the repository browser.