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.
我正在使用 QTimeLine 为跟踪鼠标的 QGraphicsView 顶部的小部件设置动画。单击鼠标右键时动画开始,但是当鼠标移动时,动画变得非常不稳定,有时会停止动画。我用过setUpdateInterval(10),但没有帮助。
setUpdateInterval(10)
我在想,当我移动鼠标时,调度程序线程太忙而无法处理任何动画。如果是这种情况,我可以通过产生自己的线程来提高其优先级来强制处理动画。否则,我还能尝试什么?