wxPython – wx.MenuBar 中的 GetLabel()函数
GetLabel()
是 wxPython 的 wx.MenuBar 类中的另一个函数。 GetLabel()
函数用于返回菜单栏中的菜单标签。 GetLabel()函数只接受 id 作为参数,返回菜单项的字符串标签。
Syntax :
Parameters :
Parameter | Input Type | Description |
---|---|---|
id | int | The menu item identifier. |
Returns : The menu item label, or the empty string if the item was not found.
代码示例:
让我们返回菜单栏中的 Menu_one 和 Menu_two 菜单项的标签。
wx.MenuBar.GetLabel(self, id)
输出 :