From: Kevin A. <al...@se...> - 2004-09-07 03:51:33
|
On Sep 6, 2004, at 8:19 PM, Daryl Fox wrote: > I've been playing with PythonCard for about a week now and I have to > say I'm > impressed. It seems very well thought out. > > I do, however, have one issue. I would like to set the text colour of > individual items in a list. Right now I'm doing a whole lot of rework > just > to get around having to do this, but it is becoming fairly difficult > at this > point. Is this even possible (without doing too much damage)? > IIRC, I don't think it is supported in the underlying wx.ListBox control used by the List component, but is supported by the wx.ListCtrl which is underneath the MultiColumnList. You can check what the wxWidgets docs say or find what you want to do in the wxPython demo and then you'll have to call the appropriate wxPython methods to set the colors. ka |