wxPython – 在menubar中添加子菜单
在这篇文章中,我们将学习如何在menubar上的菜单项中添加子菜单项。我们可以通过wxMenuBar类中的Append()函数来实现这一目的。
语法: wx.MenuBar.Append(self, menu, title)
参数 。
参数 | 输入类型 | 说明 |
---|---|---|
menu | wx.Menu | 要添加的菜单。在调用Append后,请不要删除此菜单。 |
title | 字符串 | 菜单的标题,必须是非空的。 |
返回: bool
代码示例:
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
fileMenu = wx.Menu()
# add submenu item
fileItem = fileMenu.Append(20, 'SubMenu')
menubar.Append(fileMenu, '&Menu# 1')
self.SetMenuBar(menubar)
self.SetSize((300, 200))
self.SetTitle('Menu Bar')
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出 :