1

When I am creating wxListCtrl in report view with wxLC_EDIT_LABELS flag, only the first column of the control is editable. Is there a way to make all columns editable?

Mher
  • 77
  • 1
  • 3

1 Answers1

0

No because the native Windows control doesn't support this. To have this feature you will have to use wxGrid or wxDataViewCtrl instead. The latter is much more wxListCtrl-like but you should probably upgrade to 2.9.0 before starting to use it as it has many improvements there compared to 2.8.

VZ.
  • 21,740
  • 3
  • 39
  • 42