Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/08/14 16:44:47 (10 years ago)
Author:
sbreuer
Message:
  • make textboxes readonly and resize themm
  • redraw datagrid after sorting
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Views/DataGridContentView.cs

    r10311 r10317  
    3636    }
    3737
     38    protected override void SetEnabledStateOfControls() {
     39      base.SetEnabledStateOfControls();
     40      rowsTextBox.ReadOnly = true;
     41      columnsTextBox.ReadOnly = true;
     42    }
     43
    3844    private void btnApplySort_Click(object sender, System.EventArgs e) {
    3945      Content.PreprocessingDataManipulation.reOrderToIndices(virtualRowIndices);
     46      OnContentChanged();
    4047    }
    4148  }
Note: See TracChangeset for help on using the changeset viewer.