wxPython 改变静态文本的字体
在这篇文章中,我们将学习如何改变窗口中的静态文本的字体。要做到这一点,首先我们要创建一个wxPython的wx.Font类。之后,我们将使用wx.StaticText类的SetFont()函数。SetFont()函数需要一个单一的wx.Font类型参数。
语法: wx.StaticText.SetFont(self, font)
参数 。
参数 | 输入类型 | 说明 |
---|---|---|
font | wx.Font | 静态文本的字体。 |
代码示例 。
import wx
class Example(wx.Frame):
def __init__(self, *args, **kwargs):
super(Example, self).__init__(*args, **kwargs)
self.InitUI()
def InitUI(self):
self.locale = wx.Locale(wx.LANGUAGE_ENGLISH)
self.pnl = wx.Panel(self)
# create wx.Font object
font = wx.Font(20, family = wx.FONTFAMILY_MODERN, style = 0, weight = 90,
underline = False, faceName ="", encoding = wx.FONTENCODING_DEFAULT)
self.st = wx.StaticText(self.pnl, id = 1, label ="This is the Label.", pos =(20, 20),
size = wx.DefaultSize, style = wx.ST_ELLIPSIZE_MIDDLE, name ="statictext")
# set font for the statictext
self.st.SetFont(font)
self.SetSize((350, 250))
self.SetTitle('wx.Button')
self.Centre()
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出窗口: