Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Problems.Instances.VehicleRouting.Views/3.4/VRPImportDialog.Designer.cs @ 16565

Last change on this file since 16565 was 16565, checked in by gkronber, 5 years ago

#2520: merged changes from PersistenceOverhaul branch (r16451:16564) into trunk

File size: 9.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2019 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
22namespace HeuristicLab.Problems.Instances.VehicleRouting.Views {
23  partial class VRPImportDialog {
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 && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.okButton = new System.Windows.Forms.Button();
48      this.cancelButton = new System.Windows.Forms.Button();
49      this.openVRPFileDialog = new System.Windows.Forms.OpenFileDialog();
50      this.tspFileLabel = new System.Windows.Forms.Label();
51      this.openVRPFileButton = new System.Windows.Forms.Button();
52      this.tspFileTextBox = new System.Windows.Forms.TextBox();
53      this.tourFileLabel = new System.Windows.Forms.Label();
54      this.openTourFileButton = new System.Windows.Forms.Button();
55      this.tourFileTextBox = new System.Windows.Forms.TextBox();
56      this.openTourFileDialog = new System.Windows.Forms.OpenFileDialog();
57      this.clearTourFileButton = new System.Windows.Forms.Button();
58      this.SuspendLayout();
59      //
60      // okButton
61      //
62      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
63      this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
64      this.okButton.Enabled = false;
65      this.okButton.Location = new System.Drawing.Point(422, 69);
66      this.okButton.Name = "okButton";
67      this.okButton.Size = new System.Drawing.Size(75, 23);
68      this.okButton.TabIndex = 9;
69      this.okButton.Text = "&OK";
70      this.okButton.UseVisualStyleBackColor = true;
71      //
72      // cancelButton
73      //
74      this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
75      this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
76      this.cancelButton.Location = new System.Drawing.Point(499, 69);
77      this.cancelButton.Name = "cancelButton";
78      this.cancelButton.Size = new System.Drawing.Size(75, 23);
79      this.cancelButton.TabIndex = 10;
80      this.cancelButton.Text = "&Cancel";
81      this.cancelButton.UseVisualStyleBackColor = true;
82      //
83      // openVRPFileDialog
84      //
85      this.openVRPFileDialog.Title = "Open VRP File";
86      //
87      // tspFileLabel
88      //
89      this.tspFileLabel.AutoSize = true;
90      this.tspFileLabel.Location = new System.Drawing.Point(12, 15);
91      this.tspFileLabel.Name = "tspFileLabel";
92      this.tspFileLabel.Size = new System.Drawing.Size(51, 13);
93      this.tspFileLabel.TabIndex = 0;
94      this.tspFileLabel.Text = "&Problem File:";
95      //
96      // openVRPFileButton
97      //
98      this.openVRPFileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
99      this.openVRPFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
100      this.openVRPFileButton.Location = new System.Drawing.Point(520, 10);
101      this.openVRPFileButton.Name = "openVRPFileButton";
102      this.openVRPFileButton.Size = new System.Drawing.Size(24, 24);
103      this.openVRPFileButton.TabIndex = 2;
104      this.openVRPFileButton.UseVisualStyleBackColor = true;
105      this.openVRPFileButton.Click += new System.EventHandler(this.openVRPFileButton_Click);
106      //
107      // tspFileTextBox
108      //
109      this.tspFileTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
110                  | System.Windows.Forms.AnchorStyles.Right)));
111      this.tspFileTextBox.Enabled = false;
112      this.tspFileTextBox.Location = new System.Drawing.Point(136, 12);
113      this.tspFileTextBox.Name = "tspFileTextBox";
114      this.tspFileTextBox.ReadOnly = true;
115      this.tspFileTextBox.Size = new System.Drawing.Size(378, 20);
116      this.tspFileTextBox.TabIndex = 1;
117      //
118      // tourFileLabel
119      //
120      this.tourFileLabel.AutoSize = true;
121      this.tourFileLabel.Location = new System.Drawing.Point(12, 41);
122      this.tourFileLabel.Name = "tourFileLabel";
123      this.tourFileLabel.Size = new System.Drawing.Size(119, 13);
124      this.tourFileLabel.TabIndex = 5;
125      this.tourFileLabel.Text = "&Optimal Tours File:";
126      //
127      // openTourFileButton
128      //
129      this.openTourFileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
130      this.openTourFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Open;
131      this.openTourFileButton.Location = new System.Drawing.Point(520, 35);
132      this.openTourFileButton.Name = "openTourFileButton";
133      this.openTourFileButton.Size = new System.Drawing.Size(24, 24);
134      this.openTourFileButton.TabIndex = 7;
135      this.openTourFileButton.UseVisualStyleBackColor = true;
136      this.openTourFileButton.Click += new System.EventHandler(this.openTourFileButton_Click);
137      //
138      // tourFileTextBox
139      //
140      this.tourFileTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
141                  | System.Windows.Forms.AnchorStyles.Right)));
142      this.tourFileTextBox.Enabled = false;
143      this.tourFileTextBox.Location = new System.Drawing.Point(136, 38);
144      this.tourFileTextBox.Name = "tourFileTextBox";
145      this.tourFileTextBox.ReadOnly = true;
146      this.tourFileTextBox.Size = new System.Drawing.Size(378, 20);
147      this.tourFileTextBox.TabIndex = 6;
148      //
149      // openTourFileDialog
150      //
151      this.openTourFileDialog.DefaultExt = "opt";
152      this.openTourFileDialog.FileName = "tour";
153      this.openTourFileDialog.SupportMultiDottedExtensions = true;
154      this.openTourFileDialog.Title = "Open Optimal VRP Tour File";
155      //
156      // clearTourFileButton
157      //
158      this.clearTourFileButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
159      this.clearTourFileButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Remove;
160      this.clearTourFileButton.Location = new System.Drawing.Point(550, 35);
161      this.clearTourFileButton.Name = "clearTourFileButton";
162      this.clearTourFileButton.Size = new System.Drawing.Size(24, 24);
163      this.clearTourFileButton.TabIndex = 8;
164      this.clearTourFileButton.UseVisualStyleBackColor = true;
165      this.clearTourFileButton.Click += new System.EventHandler(this.clearTourFileButton_Click);
166      //
167      // VRPImportDialog
168      //
169      this.AcceptButton = this.okButton;
170      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
171      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
172      this.CancelButton = this.cancelButton;
173      this.ClientSize = new System.Drawing.Size(586, 104);
174      this.Controls.Add(this.tourFileTextBox);
175      this.Controls.Add(this.tspFileTextBox);
176      this.Controls.Add(this.clearTourFileButton);
177      this.Controls.Add(this.openTourFileButton);
178      this.Controls.Add(this.openVRPFileButton);
179      this.Controls.Add(this.tourFileLabel);
180      this.Controls.Add(this.tspFileLabel);
181      this.Controls.Add(this.cancelButton);
182      this.Controls.Add(this.okButton);
183      this.HelpButton = true;
184      this.MaximizeBox = false;
185      this.MinimizeBox = false;
186      this.Name = "VRPImportDialog";
187      this.ShowIcon = false;
188      this.ShowInTaskbar = false;
189      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
190      this.Text = "Import VRP";
191      this.HelpButtonClicked += new System.ComponentModel.CancelEventHandler(this.VRPImportDialog_HelpButtonClicked);
192      this.ResumeLayout(false);
193      this.PerformLayout();
194
195    }
196
197    #endregion
198
199    private System.Windows.Forms.Button okButton;
200    private System.Windows.Forms.Button cancelButton;
201    private System.Windows.Forms.OpenFileDialog openVRPFileDialog;
202    private System.Windows.Forms.Label tspFileLabel;
203    private System.Windows.Forms.Button openVRPFileButton;
204    private System.Windows.Forms.TextBox tspFileTextBox;
205    private System.Windows.Forms.Label tourFileLabel;
206    private System.Windows.Forms.Button openTourFileButton;
207    private System.Windows.Forms.TextBox tourFileTextBox;
208    private System.Windows.Forms.OpenFileDialog openTourFileDialog;
209    private System.Windows.Forms.Button clearTourFileButton;
210  }
211}
Note: See TracBrowser for help on using the repository browser.