wxPython - 在 wx.MenuBar 中添加带有菜单项的图像
在本文中,我们将学习如何添加一个位图图像,其菜单项与 wx.MenuBar 类的 menubar 对象中的菜单相关联。
脚步 :
1.创建wx.MenuBar 类的菜单栏对象。
2.创建wx.Menu 类的菜单对象。
3.使用 wx.MenuItem 类创建一个 MenuItem。
4.使用 SetBitmap()函数添加带有菜单项的位图图像。
Syntax of SetBitmap() method: wx.MenuItem.SetBitmap(self, bitmap, checked=True)
Parameters of SetBitmap() method:
Parameter | Input Type | Description |
---|---|---|
bmp | wx.Bitmap | Bitmap we need to use with menuitem. |
checked | bool | If checkable set to True else False. |
代码示例:
import wx
APP_EXIT = 1
class Example(wx.Frame):
def __init__(self, *args, **kwargs):
super(Example, self).__init__(*args, **kwargs)
self.InitUI()
def InitUI(self):
self.locale = wx.Locale(wx.LANGUAGE_ENGLISH)
menubar = wx.MenuBar()
fileMenu = wx.Menu()
qmi = wx.MenuItem(fileMenu, APP_EXIT, '&Quit\tCtrl + Q')
qmi.SetBitmap(wx.Bitmap('right.png'))
fileMenu.Append(qmi)
self.Bind(wx.EVT_MENU, self.OnQuit, id = APP_EXIT)
menubar.Append(fileMenu, '&File')
self.SetMenuBar(menubar)
self.SetSize((350, 250))
self.SetTitle('Icons and shortcuts')
self.Centre()
def OnQuit(self, e):
self.Close()
def main():
app = wx.App()
ex = Example(None)
ex.Show()
app.MainLoop()
if __name__ == '__main__':
main()
输出:
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。