Python – wx.MenuBar 中的 EnableTop()函数
在本文中,我们将学习 wxPython 的 wx.MenuBar 类的 EnableTop()函数。黑白 Enable() 和 EnableTop() 的唯一区别是 EnableTop() 用于使菜单栏中的整个菜单不可点击或可点击。
Syntax:
Parameters :
Parameter | Input Type | Description |
---|---|---|
pos | int | The position of the menu, starting from zero. |
enable | bool | True to enable the menu, False to disable it. |
代码示例:
wx.MenuBar.EnableTop(self, id, enable)