Mega Code Archive

 
Categories / Python Tutorial / Wxpython
 

Change font

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))         str = "You can also change the font."         text = wx.StaticText(panel, -1, str, (20, 100))         font = wx.Font(18, wx.DECORATIVE, wx.ITALIC, wx.NORMAL)         text.SetFont(font) app = wx.PySimpleApp() frame = StaticTextFrame() frame.Show() app.MainLoop()