Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.TSP.Views/3.3/TSPView.Designer.cs @ 3151

Last change on this file since 3151 was 3151, checked in by swagner, 14 years ago

Implemented import of optimal TSP solutions (#924).

File size: 4.0 KB
RevLine 
[2805]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
[2883]22namespace HeuristicLab.Problems.TSP.Views {
[2805]23  partial class TSPView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing) {
[3151]35        if (tsplibImportDialog != null) tsplibImportDialog.Dispose();
[2805]36        if (components != null) components.Dispose();
37      }
38      base.Dispose(disposing);
39    }
40
41    #region Component Designer generated code
42
43    /// <summary>
44    /// Required method for Designer support - do not modify
45    /// the contents of this method with the code editor.
46    /// </summary>
47    private void InitializeComponent() {
48      this.importButton = new System.Windows.Forms.Button();
49      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
50      this.SuspendLayout();
51      //
[2834]52      // parameterCollectionView
[2805]53      //
[2917]54      this.parameterCollectionView.Size = new System.Drawing.Size(529, 341);
[2805]55      //
56      // nameTextBox
57      //
58      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
59      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
[2882]60      this.nameTextBox.Size = new System.Drawing.Size(457, 20);
[2805]61      //
[2882]62      // descriptionTextBox
63      //
[2917]64      this.descriptionTextBox.Size = new System.Drawing.Size(457, 20);
[2882]65      //
[2805]66      // importButton
67      //
68      this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
69                  | System.Windows.Forms.AnchorStyles.Right)));
[2882]70      this.importButton.Location = new System.Drawing.Point(0, 399);
[2805]71      this.importButton.Name = "importButton";
[2882]72      this.importButton.Size = new System.Drawing.Size(529, 23);
[2805]73      this.importButton.TabIndex = 5;
74      this.importButton.Text = "&Import from TSPLIB";
75      this.importButton.UseVisualStyleBackColor = true;
76      this.importButton.Click += new System.EventHandler(this.importButton_Click);
77      //
78      // TSPView
79      //
80      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
81      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
82      this.Controls.Add(this.importButton);
83      this.Name = "TSPView";
[2882]84      this.Size = new System.Drawing.Size(529, 422);
[2805]85      this.Controls.SetChildIndex(this.importButton, 0);
[2834]86      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
[2805]87      this.Controls.SetChildIndex(this.nameLabel, 0);
88      this.Controls.SetChildIndex(this.descriptionLabel, 0);
89      this.Controls.SetChildIndex(this.nameTextBox, 0);
90      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
91      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
92      this.ResumeLayout(false);
93      this.PerformLayout();
94
95    }
96
97    #endregion
98
99    private System.Windows.Forms.Button importButton;
100
101  }
102}
Note: See TracBrowser for help on using the repository browser.