- Timestamp:
- 02/08/16 20:42:24 (9 years ago)
- Location:
- branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/Container2DView.xaml
r13578 r13605 1 <UserControl x:Class="HeuristicLab.Problems.BinPacking.Views.Container2DView" 1 <!-- 2 /* HeuristicLab 3 * Copyright (C) 2002-2015 Joseph Helm and Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see<http://www.gnu.org/licenses/> . 19 */ 20 --> 21 22 <UserControl x:Class="HeuristicLab.Problems.BinPacking.Views.Container2DView" 2 23 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 3 24 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/Container2DView.xaml.cs
r13578 r13605 1 using System; 2 using System.Linq; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2015 Joseph Helm and Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>. 19 */ 20 #endregion 21 22 using System; 3 23 using System.Windows; 4 using System.Windows.Forms;5 using System.Windows.Input;6 24 using System.Windows.Media; 7 using System.Windows.Media.Media3D;8 25 using HeuristicLab.Encodings.PackingEncoding.PackingPlan; 9 26 using HeuristicLab.Problems.BinPacking.Dimensions; -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/Container3DView.xaml
r13576 r13605 1 <UserControl x:Class="HeuristicLab.Problems.BinPacking.Views.Container3DView" 1 <!-- 2 /* HeuristicLab 3 * Copyright (C) 2002-2015 Joseph Helm and Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 * 5 * This file is part of HeuristicLab. 6 * 7 * HeuristicLab is free software: you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation, either version 3 of the License, or 10 * (at your option) any later version. 11 * 12 * HeuristicLab is distributed in the hope that it will be useful, 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * GNU General Public License for more details. 16 * 17 * You should have received a copy of the GNU General Public License 18 * along with HeuristicLab. If not, see<http://www.gnu.org/licenses/> . 19 */ 20 --> 21 22 <UserControl x:Class="HeuristicLab.Problems.BinPacking.Views.Container3DView" 2 23 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 3 24 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/Container3DView.xaml.cs
r13576 r13605 1 using System; 1 /* HeuristicLab 2 * Copyright (C) 2002-2015 Joseph Helm and Heuristic and Evolutionary Algorithms Laboratory (HEAL) 3 * 4 * This file is part of HeuristicLab. 5 * 6 * HeuristicLab is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation, either version 3 of the License, or 9 * (at your option) any later version. 10 * 11 * HeuristicLab is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 * 16 * You should have received a copy of the GNU General Public License 17 * along with HeuristicLab. If not, see<http://www.gnu.org/licenses/> . 18 */ 19 20 using System; 2 21 using System.Linq; 3 22 using System.Windows; -
branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking.Views/3.3/HeuristicLab.Problems.BinPacking.Views-3.3.csproj
r13578 r13605 158 158 <DependentUpon>Container2DView.xaml</DependentUpon> 159 159 </Compile> 160 <Compile Include="PackingPlan2DView.cs"> 161 <SubType>UserControl</SubType> 162 </Compile> 160 <Compile Include="PackingPlan2DView.cs" /> 163 161 <Compile Include="PackingPlan2DView.Designer.cs"> 164 162 <DependentUpon>PackingPlan2DView.cs</DependentUpon> 165 163 </Compile> 166 <Compile Include="PackingPlan3DView.cs"> 167 <SubType>UserControl</SubType> 168 </Compile> 164 <Compile Include="PackingPlan3DView.cs" /> 169 165 <Compile Include="PackingPlan3DView.Designer.cs"> 170 166 <DependentUpon>PackingPlan3DView.cs</DependentUpon>
Note: See TracChangeset
for help on using the changeset viewer.