e> I'm facing some issues with wxListBox::SetBackgroundColour problem.
Under which platform and wx version? What about reproducibility in the
widgets sample (with "Set background" on the "Listbox" page)?
Regards,
VZ
--
TT-Solutions: wxWidgets consultancy and technical support
http://www.tt-solutions.com/
e> Further isolation shows that something is wrong with wxALIGN_CENTER
e> style
This style is not supported by wxListBox. Actually when you use it, you
specify wxLB_OWNERDRAW | wxLB_INT_HEIGHT and I guess the former is what
creates the problem (it's for internal use by wxCheckListBox only and
shouldn't be used in the code).
e> How can I arrange then wxLB items in center?
You'll need to use a different control for this (wxListCtrl,
wxHtmlListBox, ...).