1 Star 2 Fork 2

镇海中学开源项目组/RunningCat

forked from 朱程炀/RunningCat 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.py 702 Bytes
一键复制 编辑 原始数据 按行查看 历史
朱程炀 提交于 2021-11-30 22:06 . Init repository
import wx
import wx.adv
mode = "dark"
animal = "cat"
class RunningCat(wx.adv.TaskBarIcon):
currentImage = -1
def __init__(self):
wx.adv.TaskBarIcon.__init__(self)
self.timer = wx.Timer(self)
self.Bind(wx.EVT_TIMER, self.OnTimer, self.timer)
self.timer.Start(50)
def OnTimer(self, evt):
self.currentImage = (self.currentImage + 1) % 5
self.SetIcon(wx.Icon(animal + "/" + mode + "_" + animal + "_"
+ str(self.currentImage) + ".ico"))
class MyFrame(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None)
self.taskBarIcon = RunningCat()
app = wx.App()
frm = MyFrame()
app.MainLoop()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhzxOpenSource/running-cat.git
[email protected]:zhzxOpenSource/running-cat.git
zhzxOpenSource
running-cat
RunningCat
master

搜索帮助