Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/Shapes/CuboidPackingItemView.Designer.cs @ 9348

Last change on this file since 9348 was 9348, checked in by jhelm, 11 years ago

#1966: First working version of bin-packing problems.

File size: 2.6 KB
Line 
1using System.Reflection;
2using System;
3using System.IO;
4namespace 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}
Note: See TracBrowser for help on using the repository browser.