Changeset 10625
- Timestamp:
- 03/19/14 14:08:53 (11 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataPreprocessingView.cs
r10620 r10625 23 23 using System.Windows.Forms; 24 24 using HeuristicLab.Common; 25 using HeuristicLab.Core; 25 26 using HeuristicLab.Core.Views; 26 27 using HeuristicLab.MainForm; … … 53 54 var filterLogic = new FilterLogic(data); 54 55 55 v iewShortcutCollectionView.Content = new ViewShortcutCollection{56 var viewShortcuts = new ItemCollection<IViewShortcut>() { 56 57 new DataGridContent(dataGridLogic, manipulationLogic), 57 58 new StatisticsContent(statisticsLogic), … … 61 62 new HistogramContent(histogramLogic) 62 63 }; 64 65 viewShortcutCollectionView.Content = viewShortcuts.AsReadOnly(); 63 66 } else { 64 67 viewShortcutCollectionView.Content = null; -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataPreprocessingView.designer.cs
r10614 r10625 96 96 this.viewShortcutCollectionView.Location = new System.Drawing.Point(4, 33); 97 97 this.viewShortcutCollectionView.Name = "viewShortcutCollectionView"; 98 this.viewShortcutCollectionView.ReadOnly = true;98 this.viewShortcutCollectionView.ReadOnly = false; 99 99 this.viewShortcutCollectionView.ShowDetails = true; 100 100 this.viewShortcutCollectionView.Size = new System.Drawing.Size(831, 413); -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/ViewShortcutCollectionView.cs
r10614 r10625 21 21 22 22 23 using HeuristicLab.Core; 23 24 using HeuristicLab.Core.Views; 24 25 using HeuristicLab.MainForm; … … 26 27 namespace HeuristicLab.DataPreprocessing.Views { 27 28 [View("ViewShortcutCollection View")] 28 [Content(typeof( ViewShortcutCollection), true)]29 [Content(typeof(IItemCollection<IViewShortcut>), true)] 29 30 public partial class ViewShortcutCollectionView : ItemCollectionView<IViewShortcut> { 30 31 -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj
r10614 r10625 78 78 <Compile Include="Implementations\ManipulationLogic.cs" /> 79 79 <Compile Include="Interfaces\IPreprocessingData.cs" /> 80 <Compile Include="Implementations\ViewShortcutCollection.cs" />81 80 <Compile Include="Interfaces\IDataGridLogic.cs" /> 82 81 <Compile Include="Implementations\FilterContent.cs" /> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/DataGridContent.cs
r10618 r10625 123 123 } 124 124 125 public bool SetValue(string value, int columnIndex,int rowIndex) {125 public bool SetValue(string value, int columnIndex, int rowIndex) { 126 126 return dataGridLogic.SetValue(value, columnIndex, rowIndex); 127 127 }
Note: See TracChangeset
for help on using the changeset viewer.