Free cookie consent management tool by TermsFeed Policy Generator

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

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

Merged changes from trunk (#1561) into branch (#1177)

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