Changeset 10239
- Timestamp:
- 12/18/13 13:55:04 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 5 added
- 2 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj
r10237 r10239 77 77 </ItemGroup> 78 78 <ItemGroup> 79 <None Include="Plugin.cs.frame" /> 80 <Compile Include="DataPreprocessingView.cs"> 79 <Compile Include="Implementations\DataGridLogic.cs" /> 80 <Compile Include="Interfaces\IDataGridLogic.cs" /> 81 <Compile Include="Views\DataPreprocessingView.cs"> 81 82 <SubType>UserControl</SubType> 82 83 </Compile> 83 <Compile Include=" DataPreprocessingView.Designer.cs">84 <Compile Include="Views\DataPreprocessingView.designer.cs"> 84 85 <DependentUpon>DataPreprocessingView.cs</DependentUpon> 85 86 </Compile> 87 <None Include="Plugin.cs.frame" /> 86 88 <Compile Include="Implementations\DataGridContent.cs" /> 87 89 <Compile Include="Implementations\PreprocessingContext.cs" /> … … 90 92 <Compile Include="Implementations\SearchLogic.cs" /> 91 93 <Compile Include="Implementations\StatisticInfo.cs" /> 92 <Compile Include=" DataGridContentView.cs">94 <Compile Include="Views\DataGridContentView.cs"> 93 95 <SubType>UserControl</SubType> 94 96 </Compile> 95 <Compile Include=" DataGridContentView.Designer.cs">97 <Compile Include="Views\DataGridContentView.Designer.cs"> 96 98 <DependentUpon>DataGridContentView.cs</DependentUpon> 97 99 </Compile> … … 163 165 </ProjectReference> 164 166 </ItemGroup> 167 <ItemGroup> 168 <EmbeddedResource Include="Views\DataPreprocessingView.resx"> 169 <DependentUpon>DataPreprocessingView.cs</DependentUpon> 170 </EmbeddedResource> 171 </ItemGroup> 165 172 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 166 173 <PropertyGroup> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/DataGridContent.cs
r10236 r10239 5 5 using System.Text; 6 6 using HeuristicLab.Data; 7 using HeuristicLab.Core; 8 using HeuristicLab.Common; 9 using System.Drawing; 7 10 8 11 namespace HeuristicLab.DataPreprocessing { 9 public class DataGridContent : IDataGridContent { 12 13 [Item("DataGridContent", "Represents a data grid.")] 14 public class DataGridContent : Item,IDataGridContent,IContent 15 { 10 16 private readonly IPreprocessingData preprocessingData; 11 17 12 18 public DataGridContent(IPreprocessingData thePreprocessingData) { 13 19 preprocessingData = thePreprocessingData; 20 } 21 22 public DataGridContent(DataGridContent dataGridContent, Cloner cloner) 23 : base(dataGridContent, cloner) 24 { 25 26 } 27 28 public IDataGridLogic DataGridLogic { get; set; } 29 30 public static new Image StaticItemImage 31 { 32 get { return HeuristicLab.Common.Resources.VSImageLibrary.Table; } 33 } 34 35 public override IDeepCloneable Clone(Cloner cloner) 36 { 37 return new DataGridContent(this, cloner); 14 38 } 15 39
Note: See TracChangeset
for help on using the changeset viewer.