wxPython wx.MenuBar中的GetMeuCount()函数

wxPython wx.MenuBar中的GetMeuCount()函数

GetMenuCount()函数是wxPython的wx.MenuBar类中存在的另一个函数。GetMenuCount()函数返回MenuBar中存在的菜单总数。它不需要任何参数。

语法:wx.MenuBar.GetMenuCount(self)

参数:GetMenuItem()中没有参数。

返回:返回该菜单栏中的菜单数量。

代码。

将静态文本的标签设置为菜单项的总数。

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')
        st1 = wx.StaticText(self, label ="Total Menus :" + str(menubar.GetMenuCount()), 
                                                                 style = wx.ALIGN_LEFT)
  
def main():
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
  
  
if __name__ == '__main__':
    main()

输出 :

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

wxPython 教程