wxPython – wx.MenuBar 中的 FindMenuItem()函数
在本文中,我们将了解 wxPython 的 wx.MenuBar 类中存在的 FindMenuItem()函数。 FindMenuItem() 用于返回项目标识符。 FindMenuItem() 接受两个参数,即 Menu title 和 submenu item 字符串。
Syntax :
Parameters :
Parameter Input Type Description menuString string Menu title to find. itemString string Item to find.
Return: FindMenuItem() returns the menu item identifier, or wx.NOT_FOUND if none was found.
代码示例:
Python3
wx.MenuBar.FindMenuItem(self, menuString, itemString)
输出:
命令行输出:
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()