在本文中,我们将学习与wxPython的wx.StatusBar类关联的Create()函数。类似于StatusBar()构造函数,如果需要使用不带任何参数的StatusBar()构造函数初始化状态栏变量,则可以使用Create向状态栏添加属性。
创建将状态栏的属性作为参数。
用法: wx.StatusBar.Create(self, parent, id=ID_ANY, style=STB_DEFAULT_STYLE, name=StatusBarNameStr)
参数:
参数 | 输入类型 | 描述 |
---|---|---|
parent | wx.Frame | 父框架到atach状态栏。 |
id | int | 用于状态栏的标识符。 |
style | long | 状态栏的样式。 |
name | string | 名称与状态栏相关联。 |
代码示例:
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)
# INITIALIZE USING EMPTY CONSTRUCTOR
self.statusbar = wx.StatusBar()
# CREATE STATUS BAR USING CREATE FUNCTION
self.statusbar.Create(self, id = 1, style = wx.STB_DEFAULT_STYLE,
name = "Status Bar")
self.statusbar.SetStatusText("Hello there this is a Status Bar")
self.SetStatusBar(self.statusbar)
self.SetSize((350, 250))
self.SetTitle('New Frame Title')
self.Centre()
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出窗口:
相关用法
- wxPython wx.Button Create()用法及代码示例
- wxPython wx.StaticText Create()用法及代码示例
- wxPython wx.BitmapButton GetClassDefaultAttributes()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 wxPython – Create() function in wx.StatusBar。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。