Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/14/15 20:03:59 (8 years ago)
Author:
gkronber
Message:

#1966: PackingPlan is just an Item not a ParameterizedNamedItem

Location:
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/PackingPlans
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/PackingPlans/PackingPlan2DView.Designer.cs

    r13032 r13462  
    4747      this.packingPlan2D = new PackingPlanVisualizations.PackingPlan2D();
    4848      this.binSelection = new System.Windows.Forms.ListBox();
    49       ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    5049      this.SuspendLayout();
    51       //
    52       // nameTextBox
    53       //
    54       this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
    55       this.errorProvider.SetIconPadding(this.nameTextBox, 2);
    5650      //
    5751      // packingPlan2D
     
    8478      this.Name = "PackingPlan2DView";
    8579      this.Size = new System.Drawing.Size(351, 299);
    86       this.Controls.SetChildIndex(this.nameLabel, 0);
    87       this.Controls.SetChildIndex(this.nameTextBox, 0);
    88       this.Controls.SetChildIndex(this.infoLabel, 0);
    8980      this.Controls.SetChildIndex(this.packingPlan2D, 0);
    9081      this.Controls.SetChildIndex(this.binSelection, 0);
    91       ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    9282      this.ResumeLayout(false);
    9383      this.PerformLayout();
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/PackingPlans/PackingPlan2DView.cs

    r13032 r13462  
    2929
    3030namespace HeuristicLab.Problems.BinPacking.Views {
    31   [View("2-dimensional packing plan View")]
     31  [View("2-dimensional packing plan view")]
    3232  [Content(typeof(PackingPlan<TwoDimensionalPacking, RectangularPackingBin, RectangularPackingItem>), true)]
    33   public partial class PackingPlan2DView : NamedItemView {
     33  public partial class PackingPlan2DView : ItemView {
    3434
    3535    public PackingPlan2DView() {
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/PackingPlans/PackingPlan3DView.Designer.cs

    r13032 r13462  
    4848      this.binSelection = new System.Windows.Forms.ListBox();
    4949      this.itemSelection = new System.Windows.Forms.ListBox();
    50       ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    5150      this.SuspendLayout();
    52       //
    53       // nameTextBox
    54       //
    55       this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
    56       this.errorProvider.SetIconPadding(this.nameTextBox, 2);
    5751      //
    5852      // packingPlan3D
     
    9791      this.Name = "PackingPlan3DView";
    9892      this.Size = new System.Drawing.Size(351, 299);
    99       this.Controls.SetChildIndex(this.nameLabel, 0);
    100       this.Controls.SetChildIndex(this.nameTextBox, 0);
    101       this.Controls.SetChildIndex(this.infoLabel, 0);
    10293      this.Controls.SetChildIndex(this.packingPlan3D, 0);
    10394      this.Controls.SetChildIndex(this.binSelection, 0);
    10495      this.Controls.SetChildIndex(this.itemSelection, 0);
    105       ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    10696      this.ResumeLayout(false);
    10797      this.PerformLayout();
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/PackingPlans/PackingPlan3DView.cs

    r13032 r13462  
    3131  [View("3-dimensional packing plan View")]
    3232  [Content(typeof(PackingPlan<ThreeDimensionalPacking, CuboidPackingBin, CuboidPackingItem>), true)]
    33   public partial class PackingPlan3DView : NamedItemView {
     33  public partial class PackingPlan3DView : ItemView {
    3434
    3535    public PackingPlan3DView() {
    3636      InitializeComponent();
    37       this.nameTextBox.Text = "Packing Plan";
    3837    }
    3938
     
    6059        packingPlan3D.InitializeContainer(0, 0, 0);
    6160      } else {
    62         Content.Name = "Packing Plan";
    6361        int i = 0;
    6462        foreach (var bp in Content.BinPackings)
     
    124122          packingPlan3D.InitializeContainer(0, 0, 0);
    125123        } else {
    126           Content.Name = "Packing Plan";
    127124          int i = 0;
    128125          foreach (var bp in Content.BinPackings)
Note: See TracChangeset for help on using the changeset viewer.