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.
我通过 c# 在 Windows 窗体中制作动画。我在代码中有一个经常更新的位图。每次更新pictureBox 后都会绘制这个位图。但是如果我使用大位图(例如 1000 高度),它的绘制速度非常慢,我的动画移动也很慢。
我怎样才能避免这种滞后?Ofc 我可以减少动画的帧数,但我不想这样做。也许我可以使用一些 2D 渲染库来绘制该图像?我正在寻找任何可能的解决方案。谢谢。