Adding a button to every row in ListCtrl WxPython
问题 I want to add a radio button / Normal button for every row in ListControl. Can anyone provide some useful hints in doing that ? So, the basic functionality I want to achieve is like this. Against every item added in the list, I want to add a valid / invalid flag which will be populated by user. So every row will have one radio button. Any information in this regard will be helpful 回答1: No, that is not supported by the ListCtrl. You can add a checkbox via the CheckListCtrlMixin though.