Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.VehicleRouting.Views/3.4/VRPProblemInstanceView.Designer.cs @ 8651

Last change on this file since 8651 was 8651, checked in by svonolfe, 12 years ago

Imrpoved VRP problem instance view (#1953)

File size: 5.3 KB
Line 
1namespace HeuristicLab.Problems.VehicleRouting.Views {
2  partial class VRPProblemInstanceView {
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.pictureBox = new System.Windows.Forms.PictureBox();
27      this.tabControl1 = new System.Windows.Forms.TabControl();
28      this.tabPage1 = new System.Windows.Forms.TabPage();
29      this.tabPage2 = new System.Windows.Forms.TabPage();
30      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
31      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
32      this.tabControl1.SuspendLayout();
33      this.tabPage1.SuspendLayout();
34      this.tabPage2.SuspendLayout();
35      this.SuspendLayout();
36      //
37      // parameterCollectionView
38      //
39      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
40      this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
41      this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
42      this.parameterCollectionView.Size = new System.Drawing.Size(448, 361);
43      //
44      // nameTextBox
45      //
46      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
47      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
48      this.nameTextBox.Size = new System.Drawing.Size(213, 20);
49      this.nameTextBox.Visible = false;
50      //
51      // nameLabel
52      //
53      this.nameLabel.Visible = false;
54      //
55      // pictureBox
56      //
57      this.pictureBox.BackColor = System.Drawing.Color.White;
58      this.pictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
59      this.pictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
60      this.pictureBox.Location = new System.Drawing.Point(3, 3);
61      this.pictureBox.Name = "pictureBox";
62      this.pictureBox.Size = new System.Drawing.Size(448, 361);
63      this.pictureBox.TabIndex = 1;
64      this.pictureBox.TabStop = false;
65      this.pictureBox.SizeChanged += new System.EventHandler(this.pictureBox_SizeChanged);
66      this.pictureBox.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseClick);
67      //
68      // tabControl1
69      //
70      this.tabControl1.Controls.Add(this.tabPage1);
71      this.tabControl1.Controls.Add(this.tabPage2);
72      this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
73      this.tabControl1.Location = new System.Drawing.Point(0, 0);
74      this.tabControl1.Name = "tabControl1";
75      this.tabControl1.SelectedIndex = 0;
76      this.tabControl1.Size = new System.Drawing.Size(462, 393);
77      this.tabControl1.TabIndex = 2;
78      //
79      // tabPage1
80      //
81      this.tabPage1.Controls.Add(this.pictureBox);
82      this.tabPage1.Location = new System.Drawing.Point(4, 22);
83      this.tabPage1.Name = "tabPage1";
84      this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
85      this.tabPage1.Size = new System.Drawing.Size(454, 367);
86      this.tabPage1.TabIndex = 0;
87      this.tabPage1.Text = "Visualization";
88      this.tabPage1.UseVisualStyleBackColor = true;
89      //
90      // tabPage2
91      //
92      this.tabPage2.Controls.Add(this.parameterCollectionView);
93      this.tabPage2.Location = new System.Drawing.Point(4, 22);
94      this.tabPage2.Name = "tabPage2";
95      this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
96      this.tabPage2.Size = new System.Drawing.Size(454, 367);
97      this.tabPage2.TabIndex = 1;
98      this.tabPage2.Text = "Parameters";
99      this.tabPage2.UseVisualStyleBackColor = true;
100      //
101      // VRPProblemInstanceView
102      //
103      this.Controls.Add(this.tabControl1);
104      this.Name = "VRPProblemInstanceView";
105      this.Size = new System.Drawing.Size(462, 393);
106      this.Controls.SetChildIndex(this.tabControl1, 0);
107      this.Controls.SetChildIndex(this.infoLabel, 0);
108      this.Controls.SetChildIndex(this.nameTextBox, 0);
109      this.Controls.SetChildIndex(this.nameLabel, 0);
110      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
111      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
112      this.tabControl1.ResumeLayout(false);
113      this.tabPage1.ResumeLayout(false);
114      this.tabPage2.ResumeLayout(false);
115      this.ResumeLayout(false);
116      this.PerformLayout();
117
118    }
119    #endregion
120
121    private System.Windows.Forms.PictureBox pictureBox;
122    private System.Windows.Forms.TabControl tabControl1;
123    private System.Windows.Forms.TabPage tabPage1;
124    private System.Windows.Forms.TabPage tabPage2;
125  }
126}
Note: See TracBrowser for help on using the repository browser.