1 | using System.Reflection;
|
---|
2 | using System;
|
---|
3 | using System.IO;
|
---|
4 | namespace HeuristicLab.Problems.BinPacking.Views {
|
---|
5 | partial class CuboidPackingItemView {
|
---|
6 | /// <summary>
|
---|
7 | /// Required designer variable.
|
---|
8 | /// </summary>
|
---|
9 | private System.ComponentModel.IContainer components = null;
|
---|
10 |
|
---|
11 | /// <summary>
|
---|
12 | /// Clean up any resources being used.
|
---|
13 | /// </summary>
|
---|
14 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
15 | protected override void Dispose(bool disposing) {
|
---|
16 | if (disposing && (components != null)) {
|
---|
17 | components.Dispose();
|
---|
18 | }
|
---|
19 | base.Dispose(disposing);
|
---|
20 | }
|
---|
21 |
|
---|
22 | #region Component Designer generated code
|
---|
23 |
|
---|
24 | /// <summary>
|
---|
25 | /// Required method for Designer support - do not modify
|
---|
26 | /// the contents of this method with the code editor.
|
---|
27 | /// </summary>
|
---|
28 | private void InitializeComponent() {
|
---|
29 | this.packingPlan3D1 = new PackingPlanVisualizations.PackingPlan3D();
|
---|
30 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
|
---|
31 | this.SuspendLayout();
|
---|
32 | //
|
---|
33 | // nameTextBox
|
---|
34 | //
|
---|
35 | this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
|
---|
36 | this.errorProvider.SetIconPadding(this.nameTextBox, 2);
|
---|
37 | //
|
---|
38 | // packingPlan3D1
|
---|
39 | //
|
---|
40 | this.packingPlan3D1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
41 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
42 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
43 | this.packingPlan3D1.Location = new System.Drawing.Point(6, 20);
|
---|
44 | this.packingPlan3D1.Name = "packingPlan3D1";
|
---|
45 | this.packingPlan3D1.Size = new System.Drawing.Size(342, 276);
|
---|
46 | this.packingPlan3D1.TabIndex = 3;
|
---|
47 | //
|
---|
48 | // CuboidPackingShapeView
|
---|
49 | //
|
---|
50 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
51 | this.Controls.Add(this.packingPlan3D1);
|
---|
52 | this.Name = "CuboidPackingShapeView";
|
---|
53 | this.Size = new System.Drawing.Size(351, 299);
|
---|
54 | this.Controls.SetChildIndex(this.nameLabel, 0);
|
---|
55 | this.Controls.SetChildIndex(this.nameTextBox, 0);
|
---|
56 | this.Controls.SetChildIndex(this.infoLabel, 0);
|
---|
57 | this.Controls.SetChildIndex(this.packingPlan3D1, 0);
|
---|
58 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
59 | this.ResumeLayout(false);
|
---|
60 | this.PerformLayout();
|
---|
61 |
|
---|
62 | }
|
---|
63 |
|
---|
64 | #endregion
|
---|
65 |
|
---|
66 | private PackingPlanVisualizations.PackingPlan3D packingPlan3D1;
|
---|
67 |
|
---|
68 | }
|
---|
69 | }
|
---|