Free cookie consent management tool by TermsFeed Policy Generator

Changeset 7986


Ignore:
Timestamp:
06/12/12 08:30:10 (12 years ago)
Author:
mkommend
Message:

#1869: Cleared combo box items if selected data table changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionViews/RunCollectionDataTableView.cs

    r7980 r7986  
    185185
    186186    private void UpdateDataTableComboBox() {
     187      dataTableComboBox.Items.Clear();
    187188      var dataTables = (from run in Content
    188189                        from result in run.Results
     
    195196
    196197    private void UpdateDataRowComboBox() {
     198      dataRowComboBox.Items.Clear();
    197199      string resultName = (string)dataTableComboBox.SelectedItem;
    198200      var dataTables = from run in Content
Note: See TracChangeset for help on using the changeset viewer.