instalar - Fuente wxPython StaticText Widget
wxpython para linux (1)
¿Cómo configuro la fuente en un widget wxPython StaticText?
utilizar object.SetFont. Por ejemplo (de wxpython en Acción):
text = wx.StaticText(panel, -1, ''my text'', (20, 100))
font = wx.Font(18, wx.DECORATIVE, wx.ITALIC, wx.NORMAL)
text.SetFont(font)
wx.Font tiene la siguiente firma:
wx.Font(pointSize, family, style, weight, underline=False, faceName="", encoding=wx.FONTENCODING_DEFAULT)
familia puede ser:
wx.DECORATIVE, wx.DEFAULT, wx.MODERN, wx.ROMAN, wx.SCRIPT o wx.SWISS.
el estilo puede ser:
wx.NORMAL, wx.SLANT o wx.ITALIC.
el peso puede ser:
wx.NORMAL, wx.LIGHT o wx.BOLD