wxPython wx.Button中的GetBitmap()函数

wxPython wx.Button中的GetBitmap()函数

在这篇文章中,我们将学习与wxPython的wx.Button类相关的GetBitmap()函数。GetBitmap()函数只是用来返回按钮所显示的位图。

只有当按钮不显示任何图像时,返回的位图才可能是无效的。

语法:wx.Button.GetBitmap(self)

参数。GetBitmap()函数中没有参数。

返回类型:wx.Bitmap

代码示例。

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)
  
        # create parent panel for button
        self.pnl = wx.Panel(self)
          
        # create wx.Bitmap object 
        bmp = wx.Bitmap('pointer.png')
  
        # create button at point (20, 20)
        self.st = wx.Button(self.pnl, id = 1, label ="Button", pos =(20, 20),
                                          size =(100, 30),  name ="button")
          
        # set bmp as bitmap for button
        self.st.SetBitmap(bmp)
  
        # get wx.Bitmap object
        bmap = self.st.GetBitmap()
  
        # print depth of bitmap
        print(bmp.Depth)
  
        self.SetSize((350, 250))
        self.SetTitle('wx.Button')
        self.Centre()
  
def main():
    app = wx.App()
    ex = Example(None)
    ex.Show()
    app.MainLoop()
  
  
if __name__ == '__main__':
    main()

控制台输出。

32

输出窗口:

wxPython - wx.Button中的GetBitmap()函数

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

wxPython 教程