The ListCtrl can’t do that sort of thing. You might be able to bend the wx.grid.Grid widget to your will to do something like that though. Or there is a remote possibility that you could hack the UltimateListCtrl to do that, but personally I think you’d have to create your own custom widget.
It's not too hard to draw your own column labels in the Grid class. In fact, there is a module in the library makes it fairly easy. Take a look at the wx.lib.mixins.gridlabelrenderer module.
···
On 10/29/12 9:23 AM, Mike Driscoll wrote:
Hi,
The ListCtrl can't do that sort of thing. You might be able to bend the
wx.grid.Grid widget to your will to do something like that though. Or
there is a remote possibility that you could hack the UltimateListCtrl
to do that, but personally I think you'd have to create your own custom
widget.