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


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

在本文中,我們將學習與wxPython的wx.MenuBar類關聯的Detach()函數。 Attach()函數隻需將菜單欄與框架連接即可。

Attach()函數僅使用一個wx.Frame類型參數。

用法: wx.MenuBar.Atach(self, frame)

參數:

參數 輸入類型 描述
frame wx.Frame 框架以匹配菜單欄

代碼示例:

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.item = wx.MenuItem(self.fileMenu, 1, '&Check',  
                                  helpString ="Check Help") 
        self.item.SetBitmap(wx.Bitmap('right.png')) 
  
        # SET BLUE COLOUR FOR TEXT FORMAT(R, B, G, A) 
        self.item.SetTextColour((79, 81, 230, 255)) 
        self.fileMenu.Append(self.item) 
        self.menubar.Append(self.fileMenu, '&File') 
  
        # Attach menubar to frame 
        self.menubar.Attach(self) 
        self.SetSize((350, 250)) 
        self.SetTitle('Icons and shortcuts') 
        self.Centre() 
  
def main():
    app = wx.App() 
    ex = Example(None) 
    ex.Show() 
    app.MainLoop() 
  
  
if __name__ == '__main__':
    main()

輸出:




相關用法


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