Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Python 中使用 wx.grid 来显示股票价格。单元格的值更改后,我想在短时间内更改背景和字体颜色,例如 0.5 秒,然后将其更改回原来的颜色。如果我以直接的方式执行此操作,我只需更改两种颜色,执行 time.sleep(0.5) 并将其更改回原来的颜色。但是,这种方式每个单元格的更新时间太长了。有人知道这样做的聪明方法吗?
更改颜色并使用 wxTimerEvent 设置延迟,直到您在事件处理程序中将其更改回。