Free cookie consent management tool by TermsFeed Policy Generator

source: branches/VRP/HeuristicLab.Problems.VehicleRouting.Views/3.4/VRPSolutionView.Designer.cs @ 5867

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

Merged changes from trunk into branch (#1177)

File size: 5.3 KB
Line 
1namespace HeuristicLab.Problems.VehicleRouting.Views {
2  partial class VRPSolutionView {
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.tabControl1 = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
27      this.tabPage1 = new System.Windows.Forms.TabPage();
28      this.problemInstanceView = new HeuristicLab.MainForm.WindowsForms.ViewHost();
29      this.tabPage2 = new System.Windows.Forms.TabPage();
30      this.tourGroupBox = new System.Windows.Forms.GroupBox();
31      this.tourGridView = new System.Windows.Forms.DataGridView();
32      this.tabControl1.SuspendLayout();
33      this.tabPage1.SuspendLayout();
34      this.tabPage2.SuspendLayout();
35      this.tourGroupBox.SuspendLayout();
36      ((System.ComponentModel.ISupportInitialize)(this.tourGridView)).BeginInit();
37      this.SuspendLayout();
38      //
39      // tabControl1
40      //
41      this.tabControl1.Controls.Add(this.tabPage1);
42      this.tabControl1.Controls.Add(this.tabPage2);
43      this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
44      this.tabControl1.Location = new System.Drawing.Point(0, 0);
45      this.tabControl1.Name = "tabControl1";
46      this.tabControl1.SelectedIndex = 0;
47      this.tabControl1.Size = new System.Drawing.Size(468, 415);
48      this.tabControl1.TabIndex = 0;
49      //
50      // tabPage1
51      //
52      this.tabPage1.Controls.Add(this.problemInstanceView);
53      this.tabPage1.Location = new System.Drawing.Point(4, 22);
54      this.tabPage1.Name = "tabPage1";
55      this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
56      this.tabPage1.Size = new System.Drawing.Size(460, 389);
57      this.tabPage1.TabIndex = 0;
58      this.tabPage1.Text = "ProblemInstance";
59      this.tabPage1.UseVisualStyleBackColor = true;
60      //
61      // problemInstanceView
62      //
63      this.problemInstanceView.Caption = "View";
64      this.problemInstanceView.Content = null;
65      this.problemInstanceView.Dock = System.Windows.Forms.DockStyle.Fill;
66      this.problemInstanceView.Location = new System.Drawing.Point(3, 3);
67      this.problemInstanceView.Name = "problemInstanceView";
68      this.problemInstanceView.ReadOnly = false;
69      this.problemInstanceView.Size = new System.Drawing.Size(454, 383);
70      this.problemInstanceView.TabIndex = 0;
71      this.problemInstanceView.ViewType = null;
72      //
73      // tabPage2
74      //
75      this.tabPage2.Controls.Add(this.tourGroupBox);
76      this.tabPage2.Location = new System.Drawing.Point(4, 22);
77      this.tabPage2.Name = "tabPage2";
78      this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
79      this.tabPage2.Size = new System.Drawing.Size(460, 389);
80      this.tabPage2.TabIndex = 1;
81      this.tabPage2.Text = "Tours";
82      this.tabPage2.UseVisualStyleBackColor = true;
83      //
84      // tourGroupBox
85      //
86      this.tourGroupBox.Controls.Add(this.tourGridView);
87      this.tourGroupBox.Dock = System.Windows.Forms.DockStyle.Fill;
88      this.tourGroupBox.Location = new System.Drawing.Point(3, 3);
89      this.tourGroupBox.Name = "tourGroupBox";
90      this.tourGroupBox.Size = new System.Drawing.Size(454, 383);
91      this.tourGroupBox.TabIndex = 1;
92      this.tourGroupBox.TabStop = false;
93      this.tourGroupBox.Text = "Tour";
94      //
95      // tourGridView
96      //
97      this.tourGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
98      this.tourGridView.Dock = System.Windows.Forms.DockStyle.Fill;
99      this.tourGridView.Location = new System.Drawing.Point(3, 16);
100      this.tourGridView.Name = "tourGridView";
101      this.tourGridView.Size = new System.Drawing.Size(448, 364);
102      this.tourGridView.TabIndex = 0;
103      //
104      // VRPSolutionView
105      //
106      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
107      this.Controls.Add(this.tabControl1);
108      this.Name = "VRPSolutionView";
109      this.Size = new System.Drawing.Size(468, 415);
110      this.tabControl1.ResumeLayout(false);
111      this.tabPage1.ResumeLayout(false);
112      this.tabPage2.ResumeLayout(false);
113      this.tourGroupBox.ResumeLayout(false);
114      ((System.ComponentModel.ISupportInitialize)(this.tourGridView)).EndInit();
115      this.ResumeLayout(false);
116
117    }
118
119    #endregion
120
121    private HeuristicLab.MainForm.WindowsForms.DragOverTabControl tabControl1;
122    private System.Windows.Forms.TabPage tabPage1;
123    private MainForm.WindowsForms.ViewHost problemInstanceView;
124    private System.Windows.Forms.TabPage tabPage2;
125    private System.Windows.Forms.GroupBox tourGroupBox;
126    private System.Windows.Forms.DataGridView tourGridView;
127  }
128}
Note: See TracBrowser for help on using the repository browser.