Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.VehicleRouting.Views/3.3/VRPSolutionView.Designer.cs @ 6447

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

Replaced tour data table with a text box as a tour visualization to prevent out of memory exceptions for large instances (#1561)

File size: 6.6 KB
RevLine 
[3938]1#region License Information
2/* HeuristicLab
[5445]3 * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[3938]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.VehicleRouting.Views {
23  partial class VRPSolutionView {
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) {
35        if (components != null) components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component 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() {
[5466]47      this.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
[3938]48      this.visualizationTabPage = new System.Windows.Forms.TabPage();
[4185]49      this.pictureBox = new System.Windows.Forms.PictureBox();
[3938]50      this.valueTabPage = new System.Windows.Forms.TabPage();
51      this.tourGroupBox = new System.Windows.Forms.GroupBox();
[6447]52      this.valueTextBox = new System.Windows.Forms.TextBox();
[3938]53      this.tabControl.SuspendLayout();
54      this.visualizationTabPage.SuspendLayout();
[4185]55      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
[3938]56      this.valueTabPage.SuspendLayout();
57      this.tourGroupBox.SuspendLayout();
58      this.SuspendLayout();
59      //
60      // tabControl
61      //
[6447]62      this.tabControl.AllowDrop = true;
[3938]63      this.tabControl.Controls.Add(this.visualizationTabPage);
64      this.tabControl.Controls.Add(this.valueTabPage);
[4015]65      this.tabControl.Dock = System.Windows.Forms.DockStyle.Fill;
66      this.tabControl.Location = new System.Drawing.Point(0, 0);
[3938]67      this.tabControl.Name = "tabControl";
68      this.tabControl.SelectedIndex = 0;
[4185]69      this.tabControl.Size = new System.Drawing.Size(423, 558);
70      this.tabControl.TabIndex = 1;
[3938]71      //
72      // visualizationTabPage
73      //
74      this.visualizationTabPage.Controls.Add(this.pictureBox);
75      this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
76      this.visualizationTabPage.Name = "visualizationTabPage";
77      this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
[4185]78      this.visualizationTabPage.Size = new System.Drawing.Size(415, 532);
[3938]79      this.visualizationTabPage.TabIndex = 0;
80      this.visualizationTabPage.Text = "Visualization";
81      this.visualizationTabPage.UseVisualStyleBackColor = true;
82      //
[4185]83      // pictureBox
84      //
[6447]85      this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
86            | System.Windows.Forms.AnchorStyles.Left)
87            | System.Windows.Forms.AnchorStyles.Right)));
[4185]88      this.pictureBox.BackColor = System.Drawing.Color.White;
89      this.pictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
90      this.pictureBox.Location = new System.Drawing.Point(6, 6);
91      this.pictureBox.Name = "pictureBox";
92      this.pictureBox.Size = new System.Drawing.Size(403, 520);
93      this.pictureBox.TabIndex = 0;
94      this.pictureBox.TabStop = false;
95      this.pictureBox.SizeChanged += new System.EventHandler(this.pictureBox_SizeChanged);
96      //
[3938]97      // valueTabPage
98      //
99      this.valueTabPage.Controls.Add(this.tourGroupBox);
100      this.valueTabPage.Location = new System.Drawing.Point(4, 22);
101      this.valueTabPage.Name = "valueTabPage";
102      this.valueTabPage.Padding = new System.Windows.Forms.Padding(3);
[4352]103      this.valueTabPage.Size = new System.Drawing.Size(415, 532);
[3938]104      this.valueTabPage.TabIndex = 1;
105      this.valueTabPage.Text = "Value";
106      this.valueTabPage.UseVisualStyleBackColor = true;
107      //
108      // tourGroupBox
109      //
[6447]110      this.tourGroupBox.Controls.Add(this.valueTextBox);
[4015]111      this.tourGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
112      this.tourGroupBox.Location = new System.Drawing.Point(3, 3);
[3938]113      this.tourGroupBox.Name = "tourGroupBox";
[4352]114      this.tourGroupBox.Size = new System.Drawing.Size(409, 526);
[3938]115      this.tourGroupBox.TabIndex = 0;
116      this.tourGroupBox.TabStop = false;
117      this.tourGroupBox.Text = "Tour";
118      //
[6447]119      // valueTextBox
[3938]120      //
[6447]121      this.valueTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
122      this.valueTextBox.Location = new System.Drawing.Point(3, 16);
123      this.valueTextBox.Multiline = true;
124      this.valueTextBox.Name = "valueTextBox";
125      this.valueTextBox.Size = new System.Drawing.Size(403, 507);
126      this.valueTextBox.TabIndex = 0;
[3938]127      //
128      // VRPSolutionView
129      //
130      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
131      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
[4185]132      this.Controls.Add(this.tabControl);
[3938]133      this.Name = "VRPSolutionView";
[4015]134      this.Size = new System.Drawing.Size(423, 558);
[3938]135      this.tabControl.ResumeLayout(false);
136      this.visualizationTabPage.ResumeLayout(false);
[4185]137      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
[3938]138      this.valueTabPage.ResumeLayout(false);
139      this.tourGroupBox.ResumeLayout(false);
[6447]140      this.tourGroupBox.PerformLayout();
[3938]141      this.ResumeLayout(false);
142
143    }
144
145    #endregion
146
[5466]147    private HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl;
[3938]148    private System.Windows.Forms.TabPage visualizationTabPage;
[4185]149    private System.Windows.Forms.PictureBox pictureBox;
[3938]150    private System.Windows.Forms.TabPage valueTabPage;
151    private System.Windows.Forms.GroupBox tourGroupBox;
[6447]152    private System.Windows.Forms.TextBox valueTextBox;
[3938]153
154
[4185]155
[3938]156  }
157}
Note: See TracBrowser for help on using the repository browser.