Free cookie consent management tool by TermsFeed Policy Generator

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

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

Merged changes from trunk into branch (#1177)

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