[4362] | 1 | namespace 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);
|
---|
[5867] | 35 | this.nameTextBox.Location = new System.Drawing.Point(60, 0);
|
---|
| 36 | this.nameTextBox.Size = new System.Drawing.Size(405, 20);
|
---|
[4362] | 37 | //
|
---|
[5867] | 38 | // infoLabel
|
---|
| 39 | //
|
---|
| 40 | this.infoLabel.Location = new System.Drawing.Point(471, 3);
|
---|
| 41 | //
|
---|
[4362] | 42 | // importButton
|
---|
| 43 | //
|
---|
[4860] | 44 | this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 45 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
[5867] | 46 | this.importButton.Location = new System.Drawing.Point(0, 26);
|
---|
[4362] | 47 | this.importButton.Name = "importButton";
|
---|
[4860] | 48 | this.importButton.Size = new System.Drawing.Size(490, 23);
|
---|
[4362] | 49 | this.importButton.TabIndex = 5;
|
---|
[4860] | 50 | this.importButton.Text = "Import";
|
---|
[4362] | 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;
|
---|
[5867] | 61 | this.parameterCollectionView.Location = new System.Drawing.Point(0, 55);
|
---|
[4362] | 62 | this.parameterCollectionView.Name = "parameterCollectionView";
|
---|
| 63 | this.parameterCollectionView.ReadOnly = false;
|
---|
[5867] | 64 | this.parameterCollectionView.Size = new System.Drawing.Size(490, 210);
|
---|
[4362] | 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";
|
---|
[5867] | 73 | this.Size = new System.Drawing.Size(490, 275);
|
---|
[4362] | 74 | this.Controls.SetChildIndex(this.importButton, 0);
|
---|
[4860] | 75 | this.Controls.SetChildIndex(this.parameterCollectionView, 0);
|
---|
[4362] | 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 | }
|
---|