wxPython – Python中的 Frame() 构造函数
在本文中,我们将了解 wxPython 中的 frame() 构造函数。 frame() 构造函数是 wxPython 的 wx.Frame 类的构造函数。此构造函数用于设置框架的不同属性。
Syntax :
Parameters :
Parameter Input Type Description parent wx.Window Parent window. Should not be None. id wx.WindowID Control identifier. A value of -1 denotes a default value. title string Title to the frame. pos wx.Point Window position. size wx.Window Window size. style long Window style. name string Window name.
代码:
Python3
wx.Frame(parent, id=ID_ANY, title="", pos=DefaultPosition,
size=DefaultSize, style=DEFAULT_FRAME_STYLE, name=FrameNameStr)
输出: