Código Python:
Ver originalimport wx
class F(wx.Frame):
def __init__(self, *args, **kw):
wx.Frame.__init__(self, None)
style = wx.TE_MULTILINE|wx.BORDER_SUNKEN|wx.TE_RICH2
fg = wx.Colour(255,0,0)
self.status_area = wx.TextCtrl(self, -1,
pos=(10, 270),style=style,
size=(380,150))
self.status_area.SetForegroundColour(fg)
self.status_area.AppendText("blahblahhblah")
app = wx.PySimpleApp()
f = F()
f.Show()
app.MainLoop()