當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


wxPython wx.MenuBar Remove()用法及代碼示例

在本文中,我們將學習wx.MenuBar類的Remove()函數。 Remove()函數從菜單欄中菜單欄中的特定位置刪除菜單。此函數采用pos參數,即要刪除的菜單位置。

參數:

參數 輸入類型 描述
pos int 新菜單在菜單欄中的位置

碼:
讓我們在菜單欄中創建一個帶有兩個菜單的窗口Menu_oneMenu_two

Python3

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(20, "two") 
  
        menubar.Append(fm1, '&Menu_one') 
        menubar.Append(fm2, '&Menu_two') 
        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()


輸出:

碼:
讓我們寫一個代碼從菜單欄中刪除Menu_two。

Python3



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(20, "two") 
        menubar.Append(fm1, '&Menu_one') 
        menubar.Append(fm2, '&Menu_two') 
        self.SetMenuBar(menubar) 
        self.SetSize((300, 200)) 
        self.SetTitle('Menu Bar') 
  
        # removing Menu_two from menubar 
        menubar.Remove(1) 
          
def main():
    app = wx.App() 
    ex = Example(None) 
    ex.Show() 
    app.MainLoop() 
  
  
if __name__ == '__main__':
    main()

輸出:





相關用法


注:本文由純淨天空篩選整理自RahulSabharwal大神的英文原創作品 wxPython – Remove() function in wx.MenuBar。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。