Changeset 10722
- Timestamp:
- 04/03/14 22:38:09 (11 years ago)
- Location:
- branches/Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4
- Files:
-
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4.csproj
r10686 r10722 217 217 </Compile> 218 218 <Compile Include="Plugin.cs" /> 219 <Compile Include="SlidingWindowBestSolutionsCollectionHeatMapControl.cs"> 220 <SubType>UserControl</SubType> 221 </Compile> 222 <Compile Include="SlidingWindowBestSolutionsCollectionHeatMapControl.Designer.cs"> 223 <DependentUpon>SlidingWindowBestSolutionsCollectionHeatMapControl.cs</DependentUpon> 224 </Compile> 219 225 <Compile Include="SlidingWindowBestSolutionsCollectionHeatMapView.cs"> 220 226 <SubType>UserControl</SubType> … … 343 349 <ItemGroup> 344 350 <Folder Include="Exporters\" /> 351 </ItemGroup> 352 <ItemGroup> 353 <EmbeddedResource Include="SlidingWindowBestSolutionsCollectionView.resx"> 354 <DependentUpon>SlidingWindowBestSolutionsCollectionView.cs</DependentUpon> 355 </EmbeddedResource> 345 356 </ItemGroup> 346 357 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/SlidingWindowBestSolutionsCollectionHeatMapControl.Designer.cs
r10721 r10722 24 24 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Views { 25 25 26 public partial class SlidingWindowBestSolutionsCollectionHeatMap View{26 public partial class SlidingWindowBestSolutionsCollectionHeatMapControl { 27 27 /// <summary> 28 28 /// Required designer variable. … … 48 48 /// </summary> 49 49 private void InitializeComponent() { 50 this.heatMapView = new HeuristicLab.Analysis.Views.HeatMapView();50 this.heatMapView = new SlidingWindowBestSolutionsCollectionHeatMapView(); 51 51 this.comboBox1 = new System.Windows.Forms.ComboBox(); 52 52 this.label1 = new System.Windows.Forms.Label(); … … 105 105 #endregion 106 106 107 private HeuristicLab.Analysis.Views.HeatMapView heatMapView;107 private SlidingWindowBestSolutionsCollectionHeatMapView heatMapView; 108 108 private System.Windows.Forms.ComboBox comboBox1; 109 109 private System.Windows.Forms.Label label1; -
branches/Sliding Window GP/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/SlidingWindowBestSolutionsCollectionHeatMapControl.cs
r10721 r10722 33 33 [View("Sliding Window Best Solutions HeatMap View")] 34 34 [Content(typeof(SlidingWindowBestSolutionsCollection), false)] 35 public partial class SlidingWindowBestSolutionsCollectionHeatMap View: ItemView {35 public partial class SlidingWindowBestSolutionsCollectionHeatMapControl : ItemView { 36 36 public new SlidingWindowBestSolutionsCollection Content { 37 37 get { return (SlidingWindowBestSolutionsCollection)base.Content; } … … 61 61 private readonly IProgress progress; // use this to show some progress when the sliding window qualities are calculated for each model 62 62 63 public SlidingWindowBestSolutionsCollectionHeatMap View() {63 public SlidingWindowBestSolutionsCollectionHeatMapControl() { 64 64 InitializeComponent(); 65 65 progress = new Progress();
Note: See TracChangeset
for help on using the changeset viewer.