wxPython wx.MenuBar中的IsEnabled()函数
在这篇文章中,我们将学习与wxPython的wx.MenuBar类有关的IsEnabled()函数。IsEnabled()函数非常有用,因为它决定了一个项目是否被启用。IsEnabled()函数在找到该项目并启用时返回True,否则返回False。
语法:wx.MenuBar.IsEnabled(self, id)
参数。
参数 | 输入类型 | 说明 |
---|---|---|
id | int | 菜单项的标识符。 |
代码示例。
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)
self.menubar = wx.MenuBar()
self.fileMenu = wx.Menu()
self.fileMenu2 = wx.Menu()
self.item = wx.MenuItem(self.fileMenu, 1, '&Check', helpString ="Check Help",
kind = wx.ITEM_CHECK)
self.item.SetBitmap(wx.Bitmap('right.png'))
self.fileMenu.Append(self.item)
# DISABLE MENU ITEM
self.item.Enable(False)
self.menubar.Append(self.fileMenu, '&File')
self.SetMenuBar(self.menubar)
self.SetSize((350, 250))
self.SetTitle('New Frame Title')
self.Centre()
if(self.menubar.IsEnabled(1)== True):
# print CLICKABLE if True
print("CLICKABLE")
else:
# else print UNCLICKABLE
print("UNCLICKABLE")
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出:
控制台输出。
UNCLICKABLE