在 ScrollPane 中滚动时,图形会从 Canvas 中擦除
我有一个 JFrame
,其中包含 4 个 ScrollPane
实例,每个实例都有自己的 Canvas
和 BufferStrategy
。当我第一次绘图时,一切都按预期工作,但是当我在 ScrollPane 中滚动时,滚动到视图之外的图形在我将它们滚动回视图中时会被擦除。
I have a JFrame
that contains 4 instances of ScrollPane
, each with its own Canvas
and BufferStrategy
. When my drawing first takes place everything works as expected, but when I scroll in ScrollPane
the graphics that are scrolled out of view are erased when I scroll them back into view.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要使用 Canvas 和 ScrollPane。使用 JPanel 和 JScrollPane。 Swing 默认是双缓冲的。
另外,您发布的代码与您的自定义绘画无关,因此我们无法猜测您可能做错了什么。
进行更改后以及如果您需要更多帮助,请发布您的 SSCCE。
Don't use a Canvas and a ScrollPane. Use a JPanel and JScrollPane. Swing is double buffered by default.
Plus the code you posted has nothing to do with your custom painting so we can't guess what you might be doing wrong.
Post your SSCCE after making the changes and if you need more help.