Free cookie consent management tool by TermsFeed Policy Generator

Changeset 13576


Ignore:
Timestamp:
01/28/16 18:38:45 (8 years ago)
Author:
gkronber
Message:

#1966: folder reorganization (only 4 classes left in .Views plugin)

Location:
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3
Files:
1 edited
8 moved

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/Container3DView.xaml

    r13575 r13576  
    1 <UserControl x:Class="HeuristicLab.Problems.BinPacking.Views.Shapes.Container3DView"
     1<UserControl x:Class="HeuristicLab.Problems.BinPacking.Views.Container3DView"
    22             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    33             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/Container3DView.xaml.cs

    r13575 r13576  
    11using System;
    2 using System.Collections.Generic;
    32using System.Linq;
    4 using System.Text;
    5 using System.Threading.Tasks;
    63using System.Windows;
    74using System.Windows.Controls;
     
    1310using HeuristicLab.Problems.BinPacking.PackingItem;
    1411
    15 namespace HeuristicLab.Problems.BinPacking.Views.Shapes {
     12namespace HeuristicLab.Problems.BinPacking.Views {
    1613  public partial class Container3DView : UserControl {
    1714    private Point startPos;
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/HeuristicLab.Problems.BinPacking.Views-3.3.csproj

    r13575 r13576  
    152152  </ItemGroup>
    153153  <ItemGroup>
    154     <Compile Include="PackingPlans\PackingPlan3DView.cs">
     154    <Compile Include="Container3DView.xaml.cs">
     155      <DependentUpon>Container3DView.xaml</DependentUpon>
     156    </Compile>
     157    <Compile Include="PackingPlan3DView.cs">
    155158      <SubType>UserControl</SubType>
    156159    </Compile>
    157     <Compile Include="PackingPlans\PackingPlan3DView.Designer.cs">
     160    <Compile Include="PackingPlan3DView.Designer.cs">
    158161      <DependentUpon>PackingPlan3DView.cs</DependentUpon>
    159     </Compile>
    160     <Compile Include="Shapes\Container3DView.xaml.cs">
    161       <DependentUpon>Container3DView.xaml</DependentUpon>
    162162    </Compile>
    163163    <None Include="HeuristicLab.snk" />
     
    175175  </ItemGroup>
    176176  <ItemGroup>
    177     <EmbeddedResource Include="PackingPlans\PackingPlan3DView.resx">
     177    <EmbeddedResource Include="PackingPlan3DView.resx">
    178178      <DependentUpon>PackingPlan3DView.cs</DependentUpon>
    179179    </EmbeddedResource>
    180180  </ItemGroup>
    181181  <ItemGroup>
    182     <Page Include="Shapes\Container3DView.xaml">
     182    <Page Include="Container3DView.xaml">
     183      <Generator>MSBuild:Compile</Generator>
    183184      <SubType>Designer</SubType>
    184       <Generator>MSBuild:Compile</Generator>
    185185    </Page>
    186186  </ItemGroup>
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/PackingPlan3DView.Designer.cs

    r13575 r13576  
    4848      this.itemSelection = new System.Windows.Forms.ListBox();
    4949      this.elementHost = new System.Windows.Forms.Integration.ElementHost();
    50       this.packingPlan3D = new HeuristicLab.Problems.BinPacking.Views.Shapes.Container3DView();
     50      this.packingPlan3D = new HeuristicLab.Problems.BinPacking.Views.Container3DView();
    5151      this.SuspendLayout();
    5252      //
     
    103103    private System.Windows.Forms.ListBox itemSelection;
    104104    private System.Windows.Forms.Integration.ElementHost elementHost;
    105     private Shapes.Container3DView packingPlan3D;
     105    private Container3DView packingPlan3D;
    106106  }
    107107}
Note: See TracChangeset for help on using the changeset viewer.