wxPython ListCtrl:写彩色文本

时间:2011-10-13 01:12:25

标签: python wxpython

尝试将字符串写入ListCtrl,我完全不理解逻辑。这是正确的方法吗?

    self.rightPanel = wx.ListCtrl(spliter, -1, style=wx.LC_REPORT)
    self.rightPanel.InsertColumn(0, 'LineNumber')
    self.rightPanel.InsertColumn(1, 'log')
    self.rightPanel.SetColumnWidth(0, 8)
    self.rightPanel.SetColumnWidth(1, 80)

def writeConsole(self,str):
    item = wx.ListItem()
    item.SetText(str)
    item.SetTextColour(wx.RED)
    item.SetBackgroundColour(wx.BLACK)                    
    index = self.rightPanel.GetItemCount()        
    self.rightPanel.InsertItem(item)
    self.rightPanel.SetStringItem(index, 0, str(index))
    self.rightPanel.SetStringItem(index, 1, item.GetText())

1 - 为什么文字不显示颜色?
2 - 为什么在ListCtrl中有两种不同的显示文本方法?

   ListCtrl.InsertItem()
   ListCtrl.SetStringItem()

我认为InsertItem只是将项目加载到list.SetString但显示项目内容。(不确定)

1 个答案:

答案 0 :(得分:5)

SetTextColour()SetBackgroundColour()是整个listctrl的方法,而不是项目的方法。 对于您应该使用的项目(仅对报告模式有效):

GetItemTextColour(idx_item)
SetItemTextColour(idx_item, col)

InsertItem(index, item)(这里的项是wx.ListItem的实例)是在ListCtrl上添加新行的InsertItem()方法之一。

SetStringItem(index, col, label, imageId=-1)(其中index和col参数是单元格的行和列索引)允许在任何选定列中设置字符串。其他插入方法仅适用于第一列。

参考: wxPython in Action ,Noel Rappin和Robin Dunn。