How to implement an editable wxListCtrl (for all columns)?
When I am creating wxListCtrl in report view with wxLC_EDIT_LABELS flag, only the f开发者_运维百科irst column of the control is editable. Is there a way to make all columns editable?
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.
精彩评论