📜  Python – wxPython 中的 GetMenu()函数

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

Python – wxPython 中的 GetMenu()函数

在这篇特别的文章中,我们将学习 wxPython 的 wx.MenuBar 类的 GetMenu()函数。 GetMenu() 是 wx.MenuBar 类中的函数,它返回菜单栏中存在的 wx.Menu 对象。它只需要菜单栏上存在的菜单索引。

代码示例:

wx.MenuBar.GetMenu(self, menuindex)

输出

命令行输出:

import wx
  
  
class Example(wx.Frame):
  
    def __init__(self, *args, **kw):
        super(Example, self).__init__(*args, **kw)
  
        # create MenuBar using MenuBar() function
        menubar = wx.MenuBar()
  
        # add menu to MenuBar
        fm1 = wx.Menu()
        fileitem = fm1.Append(20, "one")
  
        fm2 = wx.Menu()
        fileitem2 = fm2.Append(21, "two")
        menubar.Append(fm1, '&Menu_one')
        menubar.Append(fm2, '&Menu_two')
        self.SetMenuBar(menubar)
        self.SetSize((300, 200))
        self.SetTitle('Menu Bar')
  
        # print returned menu object
        print(menubar.GetMenu(1))
  
def main():
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
  
  
if __name__ == '__main__':
    main()