I'd like to create a wxListBox control that can have different colored
text for the items. I know that this isn't possible with wxListBox, and
not possible with the the native Windows control without drawing it
yourself. I figure my options are either:
1. Create a custom control that duplicates the native control's
functionality.
2. Create a wrapper around wxListCtrl that lets it be used with the same
interface as a wxListBox (Probably slower, and wrapping it isn't strictly
necessary but would greatly simplify converting my current code).
I know some others have wanted to do this in the past, so what I was
wondering is if anyone out there has already done one of these things, or
failing that, if there is already an existing custom list box anywhere
that would be a good start?