Guys,
What I'm doing here is designing a wxWizard. One page will look like this:
It will contains 1 edit box per line. The number of lines will vary from 1 to 30
depending on the input from the previous wizard page.
Which mean that making text controls is probably not a good idea as
then the program
will suffer from the performance point of view.
The list control should be fine however I don't know if it supports
the edit controls
and not just static text.
wxGrid might be a good choice but by default in order to bring the
editor up in the cell
I need to click the cell twice.
So I guess the closest is wxDataViewListCtrl. But the problem is the selection.