GetMenuLabel()
函数是wxPython的wx.MenuBar类中存在的另一个函数。GeteMenuLabel()
函数用于返回菜单栏中存在的菜单标签。GetMenuLabel()
仅占据菜单在菜单栏中的位置。
用法:
wx.MenuBar.GetMenuLabel(self, menuindex)
参数:
参数 | 输入类型 | 描述 |
---|---|---|
pos | int | 菜单在菜单栏上的位置,从零开始。 |
返回值:菜单标签;如果找不到菜单,则为空字符串。
代码示例:
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 POSITIO 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 SetLabel()用法及代码示例
- wxPython wx.MenuBar GetHelpString()用法及代码示例
- wxPython wx.MenuBar SetHelpString()用法及代码示例
- wxPython wx.MenuBar FindMenuItem()用法及代码示例
- wxPython wx.MenuBar GetMenuLabelText()用法及代码示例
- wxPython wx.MenuBar GetMeuCount()用法及代码示例
- wxPython wx.MenuBar GetLabel()用法及代码示例
- wxPython wx.MenuBar Remove()用法及代码示例
注:本文由纯净天空筛选整理自RahulSabharwal大神的英文原创作品 wxPython – GetMenuLabel() function in wx.MenuBar。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。