Changeset 13576
- Timestamp:
- 01/28/16 18:38:45 (9 years ago)
- 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" 2 2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 3 3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/Container3DView.xaml.cs
r13575 r13576 1 1 using System; 2 using System.Collections.Generic;3 2 using System.Linq; 4 using System.Text;5 using System.Threading.Tasks;6 3 using System.Windows; 7 4 using System.Windows.Controls; … … 13 10 using HeuristicLab.Problems.BinPacking.PackingItem; 14 11 15 namespace HeuristicLab.Problems.BinPacking.Views .Shapes{12 namespace HeuristicLab.Problems.BinPacking.Views { 16 13 public partial class Container3DView : UserControl { 17 14 private Point startPos; -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/HeuristicLab.Problems.BinPacking.Views-3.3.csproj
r13575 r13576 152 152 </ItemGroup> 153 153 <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"> 155 158 <SubType>UserControl</SubType> 156 159 </Compile> 157 <Compile Include="PackingPlan s\PackingPlan3DView.Designer.cs">160 <Compile Include="PackingPlan3DView.Designer.cs"> 158 161 <DependentUpon>PackingPlan3DView.cs</DependentUpon> 159 </Compile>160 <Compile Include="Shapes\Container3DView.xaml.cs">161 <DependentUpon>Container3DView.xaml</DependentUpon>162 162 </Compile> 163 163 <None Include="HeuristicLab.snk" /> … … 175 175 </ItemGroup> 176 176 <ItemGroup> 177 <EmbeddedResource Include="PackingPlan s\PackingPlan3DView.resx">177 <EmbeddedResource Include="PackingPlan3DView.resx"> 178 178 <DependentUpon>PackingPlan3DView.cs</DependentUpon> 179 179 </EmbeddedResource> 180 180 </ItemGroup> 181 181 <ItemGroup> 182 <Page Include="Shapes\Container3DView.xaml"> 182 <Page Include="Container3DView.xaml"> 183 <Generator>MSBuild:Compile</Generator> 183 184 <SubType>Designer</SubType> 184 <Generator>MSBuild:Compile</Generator>185 185 </Page> 186 186 </ItemGroup> -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/PackingPlan3DView.Designer.cs
r13575 r13576 48 48 this.itemSelection = new System.Windows.Forms.ListBox(); 49 49 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(); 51 51 this.SuspendLayout(); 52 52 // … … 103 103 private System.Windows.Forms.ListBox itemSelection; 104 104 private System.Windows.Forms.Integration.ElementHost elementHost; 105 private Shapes.Container3DView packingPlan3D;105 private Container3DView packingPlan3D; 106 106 } 107 107 }
Note: See TracChangeset
for help on using the changeset viewer.