在 ScrollPane 中滚动时,图形会从 Canvas 中擦除

发布于 2024-11-01 02:43:02 字数 195 浏览 0 评论 0原文

我有一个 JFrame,其中包含 4 个 ScrollPane 实例,每个实例都有自己的 CanvasBufferStrategy。当我第一次绘图时,一切都按预期工作,但是当我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

被你宠の有点坏 2024-11-08 02:43:02

不要使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文