wxPython实现窗口用图片做背景

wxPython实现窗口用图片做背景,第1张

概述本文实例为大家分享了wxPython实现窗口图片背景的具体代码,供大家参考,具体内容如下

本文实例为大家分享了wxPython实现窗口用图片做背景的具体代码,供大家参考,具体内容如下

效果图:

 

实现代码:

#!/usr/bin/env python # -*- enCoding:utf-8 -*-  import wx   class MyPanel(wx.Panel):  def __init__(self,parent,ID):   wx.Panel.__init__(self,ID)   try:    image_file = 'image.jpg'    to_bmp_image = wx.Image(image_file,wx.BITMAP_TYPE_ANY).ConvertToBitmap()    self.bitmap = wx.StaticBitmap(self,-1,to_bmp_image,(0,0))    image_wIDth = to_bmp_image.GetWIDth()    image_height = to_bmp_image.GetHeight()    set_Title = '%s %d x %d' % (image_file,to_bmp_image.GetWIDth(),to_bmp_image.GetHeight())    parent.SetTitle(set_Title)   except IOError:    print 'Image file %s not found' % image_file    raise SystemExit   #创建一个按钮   self.button = wx.button(self.bitmap,label='Test',pos=(10,10)) if __name__ == '__main__':  app = wx.PySimpleApp()  frame = wx.Frame(None,'Image',size=(300,300))  my_panel = MyPanel(frame,-1)  frame.Show()  app.MainLoop() 

 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。

您可能感兴趣的文章:python在windows下创建隐藏窗口子进程的方法Python实现遍历windows所有窗口并输出窗口标题的方法python实现根据窗口标题调用窗口的方法python实现的简单窗口倒计时界面实例python中pygame针对游戏窗口的显示方法实例分析(附源码)wxPython窗口的继承机制实例分析python3+PyQt5使用数据库窗口视图Python使用Windows API创建窗口示例【基于win32gui模块】 总结

以上是内存溢出为你收集整理的wxPython实现窗口用图片做背景全部内容,希望文章能够帮你解决wxPython实现窗口用图片做背景所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1204523.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存