wxWidgets object to display lists of data

This forum can be used to talk about general design strategies, new ideas and questions in general related to wxWidgets. If you feel your questions doesn't fit anywhere, put it here.
Post Reply
Thunderchook
Earned a small fee
Earned a small fee
Posts: 17
Joined: Wed Feb 01, 2017 9:59 am

wxWidgets object to display lists of data

Post by Thunderchook »

Hi,

I'm looking for an object/class that I can print out a list of data.
Even better would be if I can reference each line.

Can anyone point me in the right direction?

Thanks,

Thunderchook.
User avatar
doublemax
Moderator
Moderator
Posts: 19116
Joined: Fri Apr 21, 2006 8:03 pm
Location: $FCE2

Re: wxWidgets object to display lists of data

Post by doublemax »

There are several classes that can do that, which one is best depends on your particular needs:
wxListCtrl
wxDataViewCtrl
wxDataViewListCtrl
wxGrid

Build the respective samples that come with wxWidgets, that should give you a good overview of what each class can do (and what not).
Use the source, Luke!
Thunderchook
Earned a small fee
Earned a small fee
Posts: 17
Joined: Wed Feb 01, 2017 9:59 am

Re: wxWidgets object to display lists of data

Post by Thunderchook »

Many thanks.
I'll give those a try.
Post Reply