wxPython各种控件用法官方手册 : http://xoomer.virgilio.it/infinity77/wxPython/widgets.html
(0)字体,wx.Font, 构造函数:...【说明】若要动态的设置GenBitmapText的背景图片:SetBitmapLabel(self, bitmap)来设置的
(4)文本输入框,wx.TextCtrl,构造函数:
"""
__init_...self.accountInput = wx.TextCtrl(panle, -1, u'', pos=(80, 25), size=(180, -1))
self.accountInput.SetForegroundColour...(4-2)密码输入框
self.passwordInput = wx.TextCtrl(panle, -1, u'', pos=(80, 70), size=(180, -1), style=wx.TE_PASSWORD...(4-3)多行输入框
self.subjectContent = wx.TextCtrl(self, -1, "", pos=(120, 40), size=(425, 80), style=wx.TE_MULTILINE