wxPython - Create() function in wx.StatusBar Last Updated : 20 Jul, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report In this article, we are going to learn about Create() function associated with wx.StatusBar class of wxPython. Similar to StatusBar() constructor Create is used to add attributes to the status bar provided status bar variable should be initialized using StatusBar() constructor without any parameters. Create takes attributes of the status bar as parameters. Syntax: wx.StatusBar.Create(self, parent, id=ID_ANY, style=STB_DEFAULT_STYLE, name=StatusBarNameStr)Parameters: ParameterInput TypeDescriptionparentwx.FrameParent Frame to attach statusbar to.idintIdentifier to be used for statusbar.stylelongStyle of the status bar.namestringName associated with statusbar. Code Example: Python3 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() Output Window: Comment More infoAdvertise with us Next Article wxPython - Create() function in wx.StatusBar R RahulSabharwal Follow Improve Article Tags : Python Python-gui Python-wxPython Practice Tags : python Similar Reads wxPython - Create() function in wx.StaticText In this article we are going to learn about Create() associated with wx.StaticText class of wxPython. A static text control displays one or more lines of read-only text. Create() function is used for two step creation of static text. It takes attributes of statictext as arguments. Syntax: wx.StaticT 1 min read wxPython | CreateTool() function in wx.Toolbar In this particular article we are going to learn about CreateTool() function in wx.ToolBar class in wxPython. CreateTool() function is a factory function to create a new toolbar tool. CreateTool() function only creates a tool which is further added using AddTool() function. Syntax: wx.ToolBar.Create 2 min read wxPython - ClearTools() function in wx.Toolbar Another function in wxPython Series we are going to learn is ClearTools() function in wx.ToolBar class of wxPython. ClearTools() is a very basic function of wx.ToolBar. ClearTools() function deletes all the tools in the toolbar. Syntax : wx.ToolBar.CLearTools(self) Return Type: wx.ToolBarToolBase Co 1 min read wxPython - GetField() function function in wx.StatusBar In this article we are going to learn about GetField() function associated to the wx.GetField() class of wxPython. GetField() function Returns the wx.StatusBarPane representing the n-th field. Only one parameter is required, that is, field number in status bar. Syntax: wx.StatusBar.GetField(self, n) 1 min read wxPython - GetBorders() function in wx.StatusBar In this article we are going to learn about GetBorders() function associated with wx.StatusBar class of wxPython. GetBorders() function returns the horizontal and vertical borders used when rendering the field text inside the field area. Note that the rect returned by GetFieldRect already accounts f 1 min read Like