1. 程式人生 > >Py之wxPython:利用wxPython設計GUI介面(圖片背景+簡單按鈕)

Py之wxPython:利用wxPython設計GUI介面(圖片背景+簡單按鈕)

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