📌  相关文章
📜  wxPython – wx.MenuBar 中的 FindMenuItem()函数

📅  最后修改于: 2022-05-13 01:55:25.446000             🧑  作者: Mango

wxPython – wx.MenuBar 中的 FindMenuItem()函数

在本文中,我们将了解 wxPython 的 wx.MenuBar 类中存在的 FindMenuItem()函数。 FindMenuItem() 用于返回项目标识符。 FindMenuItem() 接受两个参数,即 Menu title 和 submenu item 字符串。

代码示例:

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()