Free cookie consent management tool by TermsFeed Policy Generator

source: branches/BinPackingExtension/HeuristicLab.Problems.BinPacking.Views/3.3/BinPacking3DProblemView.Designer.cs @ 14976

Last change on this file since 14976 was 14976, checked in by dsouravl, 7 years ago

#2762: worked on best fit heuristics

File size: 8.2 KB
RevLine 
[14876]1namespace HeuristicLab.Problems.BinPacking.Views
2{
3    partial class BinPacking3DProblemView
4    {
5        /// <summary>
6        /// Required designer variable.
7        /// </summary>
8        private System.ComponentModel.IContainer components = null;
9
10        /// <summary>
11        /// Clean up any resources being used.
12        /// </summary>
13        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14        protected override void Dispose(bool disposing)
15        {
16            if (disposing && (components != null))
17            {
18                components.Dispose();
19            }
20            base.Dispose(disposing);
21        }
22
23        #region Component Designer generated code
24
25        /// <summary>
26        /// Required method for Designer support - do not modify
27        /// the contents of this method with the code editor.
28        /// </summary>
29        private void InitializeComponent()
30        {
31            this.sortingComboBox = new System.Windows.Forms.ComboBox();
32            this.sortingLabel = new System.Windows.Forms.Label();
33            this.deltaLabel = new System.Windows.Forms.Label();
34            this.deltaTextBox = new System.Windows.Forms.TextBox();
35            this.heuristicLabel = new System.Windows.Forms.Label();
36            this.heuristicComboBox = new System.Windows.Forms.ComboBox();
37            ((System.ComponentModel.ISupportInitialize)(this.problemInstanceSplitContainer)).BeginInit();
38            this.problemInstanceSplitContainer.Panel1.SuspendLayout();
39            this.problemInstanceSplitContainer.Panel2.SuspendLayout();
40            this.problemInstanceSplitContainer.SuspendLayout();
41            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
42            this.SuspendLayout();
43            //
44            // problemInstanceSplitContainer
45            //
46            this.problemInstanceSplitContainer.Location = new System.Drawing.Point(0, 71);
47            this.problemInstanceSplitContainer.Size = new System.Drawing.Size(511, 343);
48            //
49            // problemInstanceProviderComboBox
50            //
51            this.problemInstanceProviderComboBox.Location = new System.Drawing.Point(55, 2);
52            //
53            // parameterCollectionView
54            //
55            this.parameterCollectionView.Size = new System.Drawing.Size(501, 192);
56            //
57            // nameTextBox
58            //
59            this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
60            this.errorProvider.SetIconPadding(this.nameTextBox, 2);
61            //
62            // sortingComboBox
63            //
64            this.sortingComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
65            this.sortingComboBox.FormattingEnabled = true;
66            this.sortingComboBox.Items.AddRange(new object[] {
67            "Volume-Height",
68            "Height-Volume",
69            "Area-Height",
70            "Clustered Area-Height",
71            "Height-Area",
72            "Clustered Height-Area"});
73            this.sortingComboBox.Location = new System.Drawing.Point(55, 43);
74            this.sortingComboBox.Name = "sortingComboBox";
75            this.sortingComboBox.Size = new System.Drawing.Size(208, 21);
76            this.sortingComboBox.TabIndex = 15;
77            this.sortingComboBox.SelectedIndexChanged += new System.EventHandler(this.sortingComboBox_SelectedIndexChanged);
78            //
79            // sortingLabel
80            //
81            this.sortingLabel.AutoSize = true;
82            this.sortingLabel.Location = new System.Drawing.Point(3, 49);
83            this.sortingLabel.Name = "sortingLabel";
84            this.sortingLabel.Size = new System.Drawing.Size(43, 13);
85            this.sortingLabel.TabIndex = 16;
86            this.sortingLabel.Text = "Sorting:";
87            //
88            // deltaLabel
89            //
90            this.deltaLabel.AutoSize = true;
91            this.deltaLabel.Location = new System.Drawing.Point(278, 48);
92            this.deltaLabel.Name = "deltaLabel";
93            this.deltaLabel.Size = new System.Drawing.Size(35, 13);
94            this.deltaLabel.TabIndex = 17;
95            this.deltaLabel.Text = "Delta:";
96            this.deltaLabel.Visible = false;
97            //
98            // deltaTextBox
99            //
100            this.deltaTextBox.Location = new System.Drawing.Point(318, 44);
101            this.deltaTextBox.Name = "deltaTextBox";
102            this.deltaTextBox.Size = new System.Drawing.Size(73, 20);
103            this.deltaTextBox.TabIndex = 18;
104            this.deltaTextBox.Visible = false;
105            this.deltaTextBox.TextChanged += new System.EventHandler(this.deltaTextBox_TextChanged);
106            //
107            // heuristicLabel
108            //
109            this.heuristicLabel.AutoSize = true;
110            this.heuristicLabel.Location = new System.Drawing.Point(3, 19);
111            this.heuristicLabel.Name = "heuristicLabel";
112            this.heuristicLabel.Size = new System.Drawing.Size(51, 13);
113            this.heuristicLabel.TabIndex = 19;
114            this.heuristicLabel.Text = "Heuristic:";
115            //
116            // heuristicComboBox
117            //
118            this.heuristicComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
119            this.heuristicComboBox.FormattingEnabled = true;
120            this.heuristicComboBox.Items.AddRange(new object[] {
121            "First Fit",
122            "Best Fit (Free Volume)",
123            "Best Fit (Maximum Packing)",
124            "Best Fit (Level)",
125            "Best Fit (Residual Space)"});
126            this.heuristicComboBox.Location = new System.Drawing.Point(55, 14);
127            this.heuristicComboBox.Name = "heuristicComboBox";
128            this.heuristicComboBox.Size = new System.Drawing.Size(208, 21);
129            this.heuristicComboBox.TabIndex = 20;
[14976]130            //this.heuristicComboBox.SelectedIndexChanged += new System.EventHandler(this.heuristicComboBox_SelectedIndexChanged);
[14876]131            //
132            // BinPacking3DProblemView
133            //
134            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
135            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
136            this.Controls.Add(this.heuristicComboBox);
137            this.Controls.Add(this.heuristicLabel);
138            this.Controls.Add(this.deltaTextBox);
139            this.Controls.Add(this.deltaLabel);
140            this.Controls.Add(this.sortingLabel);
141            this.Controls.Add(this.sortingComboBox);
142            this.Name = "BinPacking3DProblemView";
143            this.Size = new System.Drawing.Size(511, 414);
144            this.Controls.SetChildIndex(this.sortingComboBox, 0);
145            this.Controls.SetChildIndex(this.sortingLabel, 0);
146            this.Controls.SetChildIndex(this.deltaLabel, 0);
147            this.Controls.SetChildIndex(this.deltaTextBox, 0);
148            this.Controls.SetChildIndex(this.problemInstanceSplitContainer, 0);
149            this.Controls.SetChildIndex(this.heuristicLabel, 0);
150            this.Controls.SetChildIndex(this.heuristicComboBox, 0);
151            this.problemInstanceSplitContainer.Panel1.ResumeLayout(false);
152            this.problemInstanceSplitContainer.Panel1.PerformLayout();
153            this.problemInstanceSplitContainer.Panel2.ResumeLayout(false);
154            this.problemInstanceSplitContainer.Panel2.PerformLayout();
155            ((System.ComponentModel.ISupportInitialize)(this.problemInstanceSplitContainer)).EndInit();
156            this.problemInstanceSplitContainer.ResumeLayout(false);
157            ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
158            this.ResumeLayout(false);
159            this.PerformLayout();
160
161        }
162
163        #endregion
164
165        private System.Windows.Forms.ComboBox sortingComboBox;
166        private System.Windows.Forms.Label sortingLabel;
167        private System.Windows.Forms.Label deltaLabel;
168        private System.Windows.Forms.TextBox deltaTextBox;
169        private System.Windows.Forms.Label heuristicLabel;
170        private System.Windows.Forms.ComboBox heuristicComboBox;
171    }
172}
Note: See TracBrowser for help on using the repository browser.