1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2015 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 |
|
---|
22 | namespace HeuristicLab.Problems.Knapsack.Views {
|
---|
23 | partial class KnapsackSolutionView {
|
---|
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.splitContainer = new System.Windows.Forms.SplitContainer();
|
---|
48 | this.label6 = new System.Windows.Forms.Label();
|
---|
49 | this.label5 = new System.Windows.Forms.Label();
|
---|
50 | this.label4 = new System.Windows.Forms.Label();
|
---|
51 | this.label3 = new System.Windows.Forms.Label();
|
---|
52 | this.label2 = new System.Windows.Forms.Label();
|
---|
53 | this.label1 = new System.Windows.Forms.Label();
|
---|
54 | this.pictureBox = new System.Windows.Forms.PictureBox();
|
---|
55 | this.splitContainer.Panel1.SuspendLayout();
|
---|
56 | this.splitContainer.Panel2.SuspendLayout();
|
---|
57 | this.splitContainer.SuspendLayout();
|
---|
58 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
|
---|
59 | this.SuspendLayout();
|
---|
60 | //
|
---|
61 | // splitContainer
|
---|
62 | //
|
---|
63 | this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
64 | this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
|
---|
65 | this.splitContainer.IsSplitterFixed = true;
|
---|
66 | this.splitContainer.Location = new System.Drawing.Point(0, 0);
|
---|
67 | this.splitContainer.Name = "splitContainer";
|
---|
68 | //
|
---|
69 | // splitContainer.Panel1
|
---|
70 | //
|
---|
71 | this.splitContainer.Panel1.Controls.Add(this.label6);
|
---|
72 | this.splitContainer.Panel1.Controls.Add(this.label5);
|
---|
73 | this.splitContainer.Panel1.Controls.Add(this.label4);
|
---|
74 | this.splitContainer.Panel1.Controls.Add(this.label3);
|
---|
75 | this.splitContainer.Panel1.Controls.Add(this.label2);
|
---|
76 | this.splitContainer.Panel1.Controls.Add(this.label1);
|
---|
77 | //
|
---|
78 | // splitContainer.Panel2
|
---|
79 | //
|
---|
80 | this.splitContainer.Panel2.Controls.Add(this.pictureBox);
|
---|
81 | this.splitContainer.Size = new System.Drawing.Size(392, 310);
|
---|
82 | this.splitContainer.SplitterDistance = 140;
|
---|
83 | this.splitContainer.TabIndex = 0;
|
---|
84 | //
|
---|
85 | // label6
|
---|
86 | //
|
---|
87 | this.label6.AutoSize = true;
|
---|
88 | this.label6.Location = new System.Drawing.Point(2, 37);
|
---|
89 | this.label6.Name = "label6";
|
---|
90 | this.label6.Size = new System.Drawing.Size(116, 13);
|
---|
91 | this.label6.TabIndex = 5;
|
---|
92 | this.label6.Text = "Filled rectangles - items";
|
---|
93 | //
|
---|
94 | // label5
|
---|
95 | //
|
---|
96 | this.label5.AutoSize = true;
|
---|
97 | this.label5.Location = new System.Drawing.Point(2, 23);
|
---|
98 | this.label5.Name = "label5";
|
---|
99 | this.label5.Size = new System.Drawing.Size(125, 13);
|
---|
100 | this.label5.TabIndex = 4;
|
---|
101 | this.label5.Text = "Big rectangle - knapsack";
|
---|
102 | //
|
---|
103 | // label4
|
---|
104 | //
|
---|
105 | this.label4.AutoSize = true;
|
---|
106 | this.label4.Location = new System.Drawing.Point(5, 80);
|
---|
107 | this.label4.Name = "label4";
|
---|
108 | this.label4.Size = new System.Drawing.Size(131, 13);
|
---|
109 | this.label4.TabIndex = 3;
|
---|
110 | this.label4.Text = "Rectangle height = weight";
|
---|
111 | //
|
---|
112 | // label3
|
---|
113 | //
|
---|
114 | this.label3.AutoSize = true;
|
---|
115 | this.label3.Location = new System.Drawing.Point(4, 52);
|
---|
116 | this.label3.Name = "label3";
|
---|
117 | this.label3.Size = new System.Drawing.Size(134, 13);
|
---|
118 | this.label3.TabIndex = 2;
|
---|
119 | this.label3.Text = "Dark color = more valuable";
|
---|
120 | //
|
---|
121 | // label2
|
---|
122 | //
|
---|
123 | this.label2.AutoSize = true;
|
---|
124 | this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
---|
125 | this.label2.Location = new System.Drawing.Point(3, 10);
|
---|
126 | this.label2.Name = "label2";
|
---|
127 | this.label2.Size = new System.Drawing.Size(49, 13);
|
---|
128 | this.label2.TabIndex = 1;
|
---|
129 | this.label2.Text = "Legend";
|
---|
130 | //
|
---|
131 | // label1
|
---|
132 | //
|
---|
133 | this.label1.AutoSize = true;
|
---|
134 | this.label1.Location = new System.Drawing.Point(5, 66);
|
---|
135 | this.label1.Name = "label1";
|
---|
136 | this.label1.Size = new System.Drawing.Size(129, 13);
|
---|
137 | this.label1.TabIndex = 0;
|
---|
138 | this.label1.Text = "Light color = less valuable";
|
---|
139 | //
|
---|
140 | // pictureBox
|
---|
141 | //
|
---|
142 | this.pictureBox.BackColor = System.Drawing.Color.White;
|
---|
143 | this.pictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
144 | this.pictureBox.Location = new System.Drawing.Point(0, 0);
|
---|
145 | this.pictureBox.Name = "pictureBox";
|
---|
146 | this.pictureBox.Size = new System.Drawing.Size(248, 310);
|
---|
147 | this.pictureBox.TabIndex = 1;
|
---|
148 | this.pictureBox.TabStop = false;
|
---|
149 | this.pictureBox.SizeChanged += new System.EventHandler(this.pictureBox_SizeChanged);
|
---|
150 | //
|
---|
151 | // KnapsackSolutionView
|
---|
152 | //
|
---|
153 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
154 | this.Controls.Add(this.splitContainer);
|
---|
155 | this.Name = "KnapsackSolutionView";
|
---|
156 | this.Size = new System.Drawing.Size(392, 310);
|
---|
157 | this.splitContainer.Panel1.ResumeLayout(false);
|
---|
158 | this.splitContainer.Panel1.PerformLayout();
|
---|
159 | this.splitContainer.Panel2.ResumeLayout(false);
|
---|
160 | this.splitContainer.ResumeLayout(false);
|
---|
161 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
|
---|
162 | this.ResumeLayout(false);
|
---|
163 |
|
---|
164 | }
|
---|
165 |
|
---|
166 | #endregion
|
---|
167 |
|
---|
168 | private System.Windows.Forms.SplitContainer splitContainer;
|
---|
169 | private System.Windows.Forms.PictureBox pictureBox;
|
---|
170 | private System.Windows.Forms.Label label4;
|
---|
171 | private System.Windows.Forms.Label label3;
|
---|
172 | private System.Windows.Forms.Label label2;
|
---|
173 | private System.Windows.Forms.Label label1;
|
---|
174 | private System.Windows.Forms.Label label6;
|
---|
175 | private System.Windows.Forms.Label label5;
|
---|
176 |
|
---|
177 | }
|
---|
178 | }
|
---|