您好,登錄后才能下訂單哦!
wxPython是Python語(yǔ)言的一套優(yōu)秀的GUI圖形庫(kù)。允許Python程序員很方便的創(chuàng)建完整的、功能鍵全的GUI用戶界面。
wxPython是作為優(yōu)秀的跨平臺(tái)GUI庫(kù)wxWidgets的Python封裝和Python模塊的方式提供給用戶的。
下面的2個(gè)實(shí)例代碼是實(shí)現(xiàn)wxPython窗體特殊效果演示大家可以研究下
import wx class Frame(wx.Frame): def __init__(self):#,pos=(0,0) wx.Frame.__init__(self,None,title = u"",pos=(10,10),size=(1340,670),style=wx.SIMPLE_BORDER|wx.TRANSPARENT_WINDOW) self.Center(wx.CURSOR_WAIT) self.SetMaxSize((1340,670)) self.SetMinSize((1340,670)) self.panel = wx.Panel(self,size=(1340,670)) self.locale = wx.Locale(wx.LANGUAGE_ENGLISH) Close_Button = wx.Button(self.panel,label=u"關(guān)閉",pos=(1240,0),size=(100,45)) self.Bind(wx.EVT_BUTTON,self.OnClose,Close_Button) def OnClose(self,event): self.Destroy() if __name__ == "__main__": app = wx.App() frame = Frame() frame.Show() app.MainLoop()
#!/usr/bin/env python #coding:utf-8 from wx import * class Trans(Frame): def __init__(self, parent, id, title): Frame.__init__(self, parent, id, title, size=(700, 500), style=DEFAULT_FRAME_STYLE | STAY_ON_TOP) self.Text = TextCtrl(self, style=TE_MULTILINE | HSCROLL) self.Text.SetBackgroundColour('Black'), self.Text.SetForegroundColour('Steel Blue') self.SetTransparent(200) #設(shè)置透明 self.Show() app = App() Trans(None, 1, "Transparent Window") app.MainLoop()
更多關(guān)于python GUI圖形庫(kù)WxPython使用方法或?qū)嵗蠹铱梢圆榭聪旅娴南嚓P(guān)鏈接
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。