wxPython – wx.MenuBar 中的 Insert()函数
在本文中,我们将学习与 wxPython 的 wx.MenuBar 类关联的 Insert()函数。所以 Insert()函数是 wx.MenuBar 类中一个非常重要的函数。 Insert()函数将给定位置的菜单插入菜单栏。
在位置 0 插入菜单会将其插入到它的最开始,在位置 GetMenuCount 插入与调用 Append 相同。
Syntax: wx.MenuBar.Insert(self, pos, menu, title)
Parameters:
Parameter | Input Type | Description |
---|---|---|
pos | int | The position of the new menu in the menu bar |
menu | wx.Menu | The menu to add. wx.MenuBar owns the menu and will free it. |
title | string | The title of the menu. |
代码示例:
import wx
class Example(wx.Frame):
def __init__(self, *args, **kwargs):
super(Example, self).__init__(*args, **kwargs)
self.InitUI()
def InitUI(self):
self.locale = wx.Locale(wx.LANGUAGE_ENGLISH)
self.menubar = wx.MenuBar()
self.fileMenu = wx.Menu()
self.fileMenu2 = wx.Menu()
self.item = wx.MenuItem(self.fileMenu, 1, '&Check',
helpString ="Check Help")
self.item.SetBitmap(wx.Bitmap('right.png'))
self.fileMenu.Append(self.item)
self.menubar.Append(self.fileMenu, '&File')
# INSERT A NEW MENU IN MENUBAR AT POSITION 0
self.menubar.Insert(0, self.fileMenu2, '&New Menu')
self.SetMenuBar(self.menubar)
self.SetSize((350, 250))
self.SetTitle('New Frame Title')
self.Centre()
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出: