wxPython wxPython中的SetBitmap()函数

wxPython wxPython中的SetBitmap()函数

在这篇文章中,我们将学习与wxPython的wx.MenuItem类相关的SetBitmap()函数。SetBitmap()为菜单项设置位图。SetBitmap必须在项目被添加到菜单之前被调用,也就是说,在没有位图的情况下添加项目并在之后设置一个位图是不能保证成功的。但是,如果最初已经设置了位图,以后可以改变或重置位图。

语法。

wx.SetBitmap

参数。

参数 输入类型 描述
bmp wx.Bitmap 要为菜单项设置的位图。
checked bool 检查为真,不检查为假。

代码示例。

import wx
  
  
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)
        self.menubar = wx.MenuBar()
        self.fileMenu = wx.Menu()
        self.item = wx.MenuItem(self.fileMenu, 1, '&Radio', helpString ="Check Help")
        # set bitmap for tool
        self.item.SetBitmap(bmp = wx.Bitmap('right.png'), checked = True)
        self.fileMenu.Append(self.item)
        self.menubar.Append(self.fileMenu, '&File')
        self.SetMenuBar(self.menubar)
        self.SetSize((350, 250))
        self.SetTitle('Icons and shortcuts')
        self.Centre()
  
def main():
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
  
  
if __name__ == '__main__':
    main()

输出窗口:

wxPython - wxPython中的SetBitmap()函数

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

wxPython 教程