|
其中最重要的创建一个透明窗口,很多人不知道怎么创建,下面我来教大家,其他的常规操作可以借助博客网站,python是个简单库多的编程语言,好像暂时没有用它来写过辅助的,不过有前途(用到的是wx模块)
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"关闭",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()
|
上一篇:香肠派对PC辅助下一篇:有大佬能发一个pc香肠派对辅助吗
|