I have a wx.ListCtrl that has the wx.LC_REPORT bit set. It has 3 columns. I want the first column to be populated with a check box for each other entry. I tried using the ListCtrl.InsertItem method, but it only takes one argument (info) and I can’t find any docs as to what that argument needs to be. I’ve tried just passing a wx.CheckBox to InsertItem to no avail.
Is it possible to have a checkbox as an entry in a wxPython ListCtrl? If so, how would I go about doing that?
In case there’s any ambiguity as to what I’m talking about, here’s a picture of what I want (not sure if this is wx, but it’s what I’m looking for). I want the checkboxes next to 1..5 in the No. column.

Have a look at
wx.lib.mixins.listctrl.