Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/07/15 16:47:17 (9 years ago)
Author:
pfleck
Message:

#2486

  • Added buttons for adding columns and rows.
  • Fixed a bug with row names.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/DataGridContentView.cs

    r12983 r12986  
    164164
    165165      ClearSorting();
    166       //UpdateData(); // rownames are created on DataGrid creation. Therefore, no update possible, yet.
    167166    }
    168167
     
    632631    #endregion
    633632
     633    private void addLineButton_Click(object sender, EventArgs e) {
     634      Content.PreProcessingData.InsertRow(Content.Rows);
     635    }
     636
     637    private void addColumnButton_Click(object sender, EventArgs e) {
     638      Content.PreProcessingData.InsertColumn<double>(Content.Columns.ToString(), Content.Columns);
     639    }
     640
    634641  }
    635642}
Note: See TracChangeset for help on using the changeset viewer.