如何正确绘制图像而不仅仅是主窗口?

发布于 2024-11-01 19:46:09 字数 1468 浏览 4 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

時窥 2024-11-08 19:46:09

在完成所有初始化之前不要显示对话框,即将 setVisible 移至构造函数中的最后一个方法。

为了更好地重用,根本不要让 JFrame 派生类调用 setVisible(true),让客户端来执行。

问题是,一旦显示窗口,对窗口所做的任何更改都必须在 GUI 线程上完成,否则您将遇到像您所看到的那样的虚假问题。

Don't show the dialog until all the initialization is done, ie move the setVisible to the last method in the constructor.

for better reuse, don't have the JFrame derived class call setVisible(true) at all, let the client do it.

The problem is, once you show the window, any changes you make to the window MUST be done on the GUI thread, or else you will get spurious problems like you are seeing.

菊凝晚露 2024-11-08 19:46:09

您通常在 paintComponent 中做的第一件事是通过 super.paintComponent() 清除屏幕外位图 - 我敢打赌这就是您的问题。

The first thing you normally do in paintComponent is clear the off-screen bitmap via super.paintComponent() - I bet thats your problem.

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