I want to display a list of icons in horizontal format in wxpython. I'm using wxglade
and I can't find how to set list's orientation. Each item has an icon and below that it has a caption. Is this kind of design possible?
wxpython horizontal listctrl
213 Views Asked by prongs At
2
There are 2 best solutions below
0

The ListCtrl doesn't support that in report mode. I suppose you might be able to do it with one of the other style flags though. However Joran has the right idea. However, I would create a series of wx.Image or wx.StaticBitmap widgets and add them to a horizontal BoxSizer instead of what he did.
something like
where each item in the_list is a wx.Panel that includes your icon and text...
something like this at least... its untested... and no idea how you would do it within wxGlade