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

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_41185868/article/details/85240175

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

实现界面

实现代码

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()

猜你喜欢

转载自blog.csdn.net/qq_41185868/article/details/85240175