wxPython wx.MenuBar中的FindMenuItem()函数
在这篇文章中,我们将学习wxPython的wx.MenuBar类中的FindMenuItem()函数。FindMenuItem()用于返回项目标识符。FindMenuItem()需要两个参数,即菜单标题和子菜单项目字符串。
语法:
wx.MenuBar.FindMenuItem(self, menuString, itemString)
参数:
参数 | 输入类型 | 描述 |
---|---|---|
menuString | 字符串 | 要查找的菜单标题。 |
itemString | 字符串 | 要查找的项目。 |
返回: FindMenuItem()返回菜单项的标识符,如果没有找到,则返回wx.NOT_FOUND。
代码示例:
import wx
class Example(wx.Frame):
def __init__(self, *args, **kwargs):
super(Example, self).__init__(*args, **kwargs)
self.InitUI()
def InitUI(self):
# create MenuBar using MenuBar() function
menubar = wx.MenuBar()
# add menu to MenuBar
fm1 = wx.Menu()
fileitem = fm1.Append(20, "Item # 1")
menubar.Append(fm1, '&Menu # 1')
self.SetMenuBar(menubar)
self.SetSize((300, 200))
self.SetTitle('Menu Bar')
# get id identifier of submenu item
id = menubar.FindMenuItem("&Menu # 1", "Item # 1")
print(id)
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出:
命令行输出 :
20