Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/PackingPlans/PackingPlan2DView.Designer.cs @ 9348

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

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

File size: 3.4 KB
Line 
1namespace HeuristicLab.Problems.BinPacking.Views {
2  partial class PackingPlan2DView {
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      this.binSelection = new System.Windows.Forms.ListBox();
28      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
29      this.SuspendLayout();
30      //
31      // nameTextBox
32      //
33      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
34      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
35      //
36      // packingPlan2D
37      //
38      this.packingPlan2D.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
39            | System.Windows.Forms.AnchorStyles.Left)
40            | System.Windows.Forms.AnchorStyles.Right)));
41      this.packingPlan2D.Location = new System.Drawing.Point(67, 26);
42      this.packingPlan2D.Name = "packingPlan2D";
43      this.packingPlan2D.Size = new System.Drawing.Size(281, 264);
44      this.packingPlan2D.TabIndex = 3;
45      //
46      // binSelection
47      //
48      this.binSelection.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
49            | System.Windows.Forms.AnchorStyles.Left)));
50      this.binSelection.FormattingEnabled = true;
51      this.binSelection.Location = new System.Drawing.Point(6, 26);
52      this.binSelection.Name = "binSelection";
53      this.binSelection.Size = new System.Drawing.Size(55, 264);
54      this.binSelection.TabIndex = 4;
55      this.binSelection.SelectedIndexChanged += new System.EventHandler(this.binSelection_SelectedIndexChanged);
56      //
57      // PackingPlan2DView
58      //
59      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
60      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
61      this.Controls.Add(this.binSelection);
62      this.Controls.Add(this.packingPlan2D);
63      this.Name = "PackingPlan2DView";
64      this.Size = new System.Drawing.Size(351, 299);
65      this.Controls.SetChildIndex(this.nameLabel, 0);
66      this.Controls.SetChildIndex(this.nameTextBox, 0);
67      this.Controls.SetChildIndex(this.infoLabel, 0);
68      this.Controls.SetChildIndex(this.packingPlan2D, 0);
69      this.Controls.SetChildIndex(this.binSelection, 0);
70      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
71      this.ResumeLayout(false);
72      this.PerformLayout();
73
74    }
75
76    #endregion
77
78    private PackingPlanVisualizations.PackingPlan2D packingPlan2D;
79    private System.Windows.Forms.ListBox binSelection;
80  }
81}
Note: See TracBrowser for help on using the repository browser.