Python – 在 wx.MenuBar 中启用函数
在本文中,我们将了解 wxPython 的 wx.MenuBar 类中的 Enable()函数。有时我们希望菜单项不可点击或可点击,在这种情况下我们使用 Enable()函数。 Enable()函数接受一个布尔参数,如果它是 True 则该项目是可点击的,否则它会变灰并且不可点击。
Syntax :
Parameters :
Parameter | Input Type | Description |
---|---|---|
id | int | The menu item identifier. |
enable | bool | True to enable the item, False to disable it. |
代码示例:
wx.MenuBar.Enable(self, id, enable)
输出: