#region License Information
/* HeuristicLab
* Copyright (C) 2002-2015 Joseph Helm and Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
namespace HeuristicLab.Problems.BinPacking.Views {
partial class PackingPlan2DView {
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing) {
if (disposing && (components != null)) {
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent() {
this.binSelection = new System.Windows.Forms.ListBox();
this.elementHost = new System.Windows.Forms.Integration.ElementHost();
this.container2DView = new HeuristicLab.Problems.BinPacking.Views.Container2DView();
this.SuspendLayout();
//
// binSelection
//
this.binSelection.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.binSelection.FormattingEnabled = true;
this.binSelection.Location = new System.Drawing.Point(6, 3);
this.binSelection.Name = "binSelection";
this.binSelection.Size = new System.Drawing.Size(55, 329);
this.binSelection.TabIndex = 4;
this.binSelection.SelectedIndexChanged += new System.EventHandler(this.binSelection_SelectedIndexChanged);
//
// elementHost
//
this.elementHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.elementHost.Location = new System.Drawing.Point(67, 3);
this.elementHost.Name = "elementHost";
this.elementHost.Size = new System.Drawing.Size(383, 329);
this.elementHost.TabIndex = 5;
this.elementHost.Text = "elementHost";
this.elementHost.Child = this.container2DView;
//
// PackingPlan2DView
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.elementHost);
this.Controls.Add(this.binSelection);
this.Name = "PackingPlan2DView";
this.Size = new System.Drawing.Size(453, 346);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListBox binSelection;
private System.Windows.Forms.Integration.ElementHost elementHost;
private Container2DView container2DView;
}
}