I have following code to set the font in list control:
item = wx.ListItem()
font = wx.Font(pointSize=48, family=wx.ROMAN, style=wx.NORMAL, weight=wx.FONTWEIGHT_BOLD,
underline=False, face="", encoding=wx.FONTENCODING_DEFAULT
item.SetFont(font)
item.SetText("hello")
self.list.InsertItem(item)
When I run the above code, the item will display after a blank item. If I remove the font = ... and item.SetFont(font) line, the item will display correctly.
Is there anybody can help me?
Thanks a lot.