import wx
class StaticTextFrame(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None, -1, 'Static Text Example', size=(400, 300))
panel = wx.Panel(self, -1)
wx.StaticText(panel, -1, "This is an example of static text", (100, 10))
rev = wx.StaticText(panel, -1, "Static Text With Reversed Colors", (100, 30))
rev.SetForegroundColour('white')
rev.SetBackgroundColour('black')
app = wx.PySimpleApp()
frame = StaticTextFrame()
frame.Show()
app.MainLoop()
|