Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/Shapes/RectangularPackingItemView.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.5 KB
Line 
1namespace HeuristicLab.Problems.BinPacking.Views {
2  partial class RectangularPackingItemView {
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.packingPlan2D = new PackingPlanVisualizations.PackingPlan2D();
27      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
28      this.SuspendLayout();
29      //
30      // nameTextBox
31      //
32      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
33      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
34      //
35      // packingPlan2D
36      //
37      this.packingPlan2D.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
38            | System.Windows.Forms.AnchorStyles.Left)
39            | System.Windows.Forms.AnchorStyles.Right)));
40      this.packingPlan2D.Location = new System.Drawing.Point(3, 29);
41      this.packingPlan2D.Name = "packingPlan2D";
42      this.packingPlan2D.Size = new System.Drawing.Size(345, 270);
43      this.packingPlan2D.TabIndex = 4;
44      //
45      // PackingPlanView
46      //
47      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
48      this.Controls.Add(this.packingPlan2D);
49      this.Name = "PackingPlanView";
50      this.Size = new System.Drawing.Size(351, 299);
51      this.Controls.SetChildIndex(this.nameLabel, 0);
52      this.Controls.SetChildIndex(this.nameTextBox, 0);
53      this.Controls.SetChildIndex(this.infoLabel, 0);
54      this.Controls.SetChildIndex(this.packingPlan2D, 0);
55      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
56      this.ResumeLayout(false);
57      this.PerformLayout();
58
59    }
60
61    #endregion
62
63    private PackingPlanVisualizations.PackingPlan2D packingPlan2D;
64  }
65}
Note: See TracBrowser for help on using the repository browser.