Changeset 9379
- Timestamp:
- 04/18/13 16:03:44 (12 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Data.Views/3.3/EnhancedStringConvertibleMatrixView.Designer.cs
r9378 r9379 20 20 #endregion 21 21 22 namespace HeuristicLab. Problems.DataAnalysis.Views {22 namespace HeuristicLab.Data.Views { 23 23 partial class EnhancedStringConvertibleMatrixView { 24 24 /// <summary> -
trunk/sources/HeuristicLab.Data.Views/3.3/EnhancedStringConvertibleMatrixView.cs
r9378 r9379 26 26 using System.Windows.Forms; 27 27 using HeuristicLab.Common; 28 using HeuristicLab.Data;29 using HeuristicLab.Data.Views;30 28 31 namespace HeuristicLab. Problems.DataAnalysis.Views {29 namespace HeuristicLab.Data.Views { 32 30 public partial class EnhancedStringConvertibleMatrixView : StringConvertibleMatrixView { 33 31 private bool[] columnVisibility, rowVisibility; … … 72 70 } 73 71 protected override void UpdateRowHeaders() { 74 if (rowVisibility == null) return;75 72 if (Content == null) return; 76 if (rowVisibility .Count() != dataGridView.RowCount) return;73 if (rowVisibility != null && rowVisibility.Count() != dataGridView.RowCount) return; 77 74 78 75 for (int index = 0; index < dataGridView.RowCount; index++) { 79 76 dataGridView.Rows[index].HeaderCell.Value = Content.RowNames.ElementAt(virtualRowIndices[index]); 80 dataGridView.Rows[index].Visible = rowVisibility.ElementAt(virtualRowIndices[index]); 77 78 if (rowVisibility != null) { 79 dataGridView.Rows[index].Visible = rowVisibility.ElementAt(virtualRowIndices[index]); 80 } else { 81 dataGridView.Rows[index].Visible = true; 82 } 81 83 } 82 84 } -
trunk/sources/HeuristicLab.Data.Views/3.3/HeuristicLab.Data.Views-3.3.csproj
r8833 r9379 121 121 <DependentUpon>DoubleRangeView.cs</DependentUpon> 122 122 </Compile> 123 <Compile Include="EnhancedStringConvertibleMatrixView.cs"> 124 <SubType>UserControl</SubType> 125 </Compile> 126 <Compile Include="EnhancedStringConvertibleMatrixView.Designer.cs"> 127 <DependentUpon>EnhancedStringConvertibleMatrixView.cs</DependentUpon> 128 </Compile> 123 129 <Compile Include="IntRangeView.cs"> 124 130 <SubType>UserControl</SubType> -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/FeatureCorrelation/AbstractFeatureCorrelationView.Designer.cs
r8881 r9379 60 60 this.progressPanel = new System.Windows.Forms.Panel(); 61 61 this.progressLabel = new System.Windows.Forms.Label(); 62 this.dataView = new HeuristicLab. Problems.DataAnalysis.Views.EnhancedStringConvertibleMatrixView();62 this.dataView = new HeuristicLab.Data.Views.EnhancedStringConvertibleMatrixView(); 63 63 ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit(); 64 64 ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit(); … … 240 240 protected System.Windows.Forms.Panel progressPanel; 241 241 protected System.Windows.Forms.Label progressLabel; 242 protected HeuristicLab. Problems.DataAnalysis.Views.EnhancedStringConvertibleMatrixView dataView;242 protected HeuristicLab.Data.Views.EnhancedStringConvertibleMatrixView dataView; 243 243 244 244 } -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj
r9288 r9379 161 161 <Compile Include="DataAnalysisSolutionEvaluationView.Designer.cs"> 162 162 <DependentUpon>DataAnalysisSolutionEvaluationView.cs</DependentUpon> 163 </Compile>164 <Compile Include="FeatureCorrelation\EnhancedStringConvertibleMatrixView.cs">165 <SubType>UserControl</SubType>166 </Compile>167 <Compile Include="FeatureCorrelation\EnhancedStringConvertibleMatrixView.Designer.cs">168 <DependentUpon>EnhancedStringConvertibleMatrixView.cs</DependentUpon>169 163 </Compile> 170 164 <Compile Include="FeatureCorrelation\FeatureCorrelationCalculator.cs" />
Note: See TracChangeset
for help on using the changeset viewer.