wxPython wx.MenuBar中的GetMenuLabel()函数

wxPython wx.MenuBar中的GetMenuLabel()函数

GetMenuLabel()函数是wxPython的wx.MenuBar类中的另一个函数。GeteMenuLabel()函数用于返回Menubar中的菜单标签。GetMenuLabel()只获取菜单在menubar中的位置。

语法:

wx.MenuBar.GetMenuLabel(self, menuindex)

参数:

参数 输入类型 描述
menuindex int 菜单在菜单栏上的位置,从0开始。

返回: 菜单标签,如果没有找到菜单,则为空字符串。

代码示例:

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(21, "two")
        menubar.Append(fm1, '&Menu_one')
        menubar.Append(fm2, '&Menu_two')
        self.SetMenuBar(menubar)
        self.SetSize((300, 200))
        self.SetTitle('Menu Bar')
 
        # STATIC TEXT WITH LABEL OF MENU AT POSITION 1
        st1 = wx.StaticText(self, label = menubar.GetMenuLabel(1),
                                            style = wx.ALIGN_LEFT)
 
def main():
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
 
 
if __name__ == '__main__':
    main()

窗口 :

wxPython - wx.MenuBar中的GetMenuLabel()函数

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

wxPython 教程