1 | namespace HeuristicLab.Problems.BinPacking.Views {
|
---|
2 | partial class PackingPlan3DView {
|
---|
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 Component 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.packingPlan3D = new PackingPlanVisualizations.PackingPlan3D();
|
---|
27 | this.binSelection = new System.Windows.Forms.ListBox();
|
---|
28 | this.itemSelection = new System.Windows.Forms.ListBox();
|
---|
29 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
30 | this.SuspendLayout();
|
---|
31 | //
|
---|
32 | // nameTextBox
|
---|
33 | //
|
---|
34 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
35 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
36 | //
|
---|
37 | // packingPlan3D
|
---|
38 | //
|
---|
39 | this.packingPlan3D.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
40 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
41 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
42 | this.packingPlan3D.Location = new System.Drawing.Point(119, 26);
|
---|
43 | this.packingPlan3D.Name = "packingPlan3D";
|
---|
44 | this.packingPlan3D.Size = new System.Drawing.Size(229, 264);
|
---|
45 | this.packingPlan3D.TabIndex = 3;
|
---|
46 | //
|
---|
47 | // binSelection
|
---|
48 | //
|
---|
49 | this.binSelection.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
50 | | System.Windows.Forms.AnchorStyles.Left)));
|
---|
51 | this.binSelection.FormattingEnabled = true;
|
---|
52 | this.binSelection.Location = new System.Drawing.Point(6, 26);
|
---|
53 | this.binSelection.Name = "binSelection";
|
---|
54 | this.binSelection.Size = new System.Drawing.Size(54, 264);
|
---|
55 | this.binSelection.TabIndex = 4;
|
---|
56 | this.binSelection.SelectedIndexChanged += new System.EventHandler(this.binSelection_SelectedIndexChanged);
|
---|
57 | //
|
---|
58 | // itemSelection
|
---|
59 | //
|
---|
60 | this.itemSelection.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
61 | | System.Windows.Forms.AnchorStyles.Left)));
|
---|
62 | this.itemSelection.FormattingEnabled = true;
|
---|
63 | this.itemSelection.Location = new System.Drawing.Point(58, 26);
|
---|
64 | this.itemSelection.Name = "itemSelection";
|
---|
65 | this.itemSelection.Size = new System.Drawing.Size(55, 264);
|
---|
66 | this.itemSelection.TabIndex = 5;
|
---|
67 | this.itemSelection.SelectedIndexChanged += new System.EventHandler(this.itemSelection_SelectedIndexChanged);
|
---|
68 | //
|
---|
69 | // PackingPlan3DView
|
---|
70 | //
|
---|
71 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
72 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
73 | this.Controls.Add(this.itemSelection);
|
---|
74 | this.Controls.Add(this.binSelection);
|
---|
75 | this.Controls.Add(this.packingPlan3D);
|
---|
76 | this.Name = "PackingPlan3DView";
|
---|
77 | this.Size = new System.Drawing.Size(351, 299);
|
---|
78 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
79 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
80 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
81 | this.Controls.SetChildIndex(this.packingPlan3D, 0);
|
---|
82 | this.Controls.SetChildIndex(this.binSelection, 0);
|
---|
83 | this.Controls.SetChildIndex(this.itemSelection, 0);
|
---|
84 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
85 | this.ResumeLayout(false);
|
---|
86 | this.PerformLayout();
|
---|
87 |
|
---|
88 | }
|
---|
89 |
|
---|
90 | #endregion
|
---|
91 |
|
---|
92 | private PackingPlanVisualizations.PackingPlan3D packingPlan3D;
|
---|
93 | private System.Windows.Forms.ListBox binSelection;
|
---|
94 | private System.Windows.Forms.ListBox itemSelection;
|
---|
95 | }
|
---|
96 | }
|
---|