当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


wxPython wx.MenuBar SetLabel()用法及代码示例


wx.MenuBar中的另一个重要函数是wxPython的wx.MenuBar类中的SetLabel()函数。 SetLabel()函数用于更改菜单栏中菜单项的标签(标题)。仅在菜单栏与框架关联后才使用。

用法:
wx.MenuBar(self, id, label)

参数:

参数 输入类型 描述
id int 菜单项标识符。
label string 菜单项标签。

代码示例:

import wx 
  
  
class Example(wx.Frame):
        super(w).__init__(*args, **kwargs) 
  
        # create MenuBar using MenuBar() function 
        menubar = wx.MenuBar() 
  
        # add menu to MenuBar 
        fm1 = wx.Menu() 
        fileitem = fm1.Append(20, "Item # 1") 
        menubar.Append(fm1, '&Menu # 1') 
        self.SetMenuBar(menubar) 
        self.SetSize((300, 200)) 
        self.SetTitle('Menu Bar')   
   
        # change label of menu item to New Name 
        menubar.SetLabel(20, "New Name") 
  
  
def main():
  
    app = wx.App() 
    ex = Example(None) 
    ex.Show() 
    app.MainLoop() 
  
  
if __name__ == '__main__':
    main()

输出:

相关用法


注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 wxPython – SetLabel() function in wx.MenuBar。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。