Py之wxPython:利用wxPython设计GUI界面(图片背景+简单按钮)


目录

​实现界面​

​实现代码​




实现界面

Py之wxPython:利用wxPython设计GUI界面(图片背景+简单按钮)_python

实现代码

import wx


class MyPanel(wx.Panel):
def __init__(self, parent, id):
wx.Panel.__init__(self, parent, id)
try:
image_file = 'F:/File_Python/Python_GUI/Talking With Robots/Resources/0011.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, -1, label='启动', pos=(102,125))
if __name__ == '__main__':
app = wx.PySimpleApp()
frame = wx.Frame(None, -1, '登陆窗口', size=(300,200))
my_panel = MyPanel(frame, -1)
frame.Show()
app.MainLoop()