Changeset 10344
- Timestamp:
- 01/15/14 14:14:53 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataPreprocessingView.cs
r10343 r10344 1 1 using System; 2 using System.Collections.Generic;3 2 using System.Windows.Forms; 4 3 using HeuristicLab.Common; … … 55 54 //create view items 56 55 contentListView.SmallImageList = new ImageList(); 57 ListViewItem contentListViewItem = CreateListViewItem(dataGridContent); 56 ListViewItem contentListViewItem = CreateListViewItem(dataGridContent); 58 57 ListViewItem statisticsListViewItem = CreateListViewItem(statisticsContent); 59 58 ListViewItem filterListViewItem = CreateListViewItem(filterContent); … … 115 114 116 115 private void applyInNewTabButton_Click(object sender, EventArgs e) { 117 IPreprocessingData data = Content.Data;118 119 foreach (string variable in data.VariableNames) {120 for (int j = 0; j < data.Rows; j++) {121 // assume: all double122 data.SetCell(variable, j, 1.0);123 }124 }125 MessageBox.Show("Success, now cloning... ");126 127 116 var cloner = new PreprocessingCloner(Content); 128 117 var item = cloner.GenerateAlteredClone(Content.ParentItem);
Note: See TracChangeset
for help on using the changeset viewer.