Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/TextCtrl.1.py
2012-04-10 03:16:37 +00:00

8 lines
309 B
Python

text.SetDefaultStyle(wx.TextAttr(wx.RED))
text.AppendText("Red text\n")
text.SetDefaultStyle(wx.TextAttr(wx.NullColour, wx.LIGHT_GREY))
text.AppendText("Red on grey text\n")
text.SetDefaultStyle(wx.TextAttr(wx.BLUE))
text.AppendText("Blue on grey text\n")