调试不正确的 AWT 显示

发布于 2024-09-17 21:21:04 字数 240 浏览 6 评论 0原文

我正在尝试使用 AWT 进行对话框等修改现有应用程序。我不知道应用程序的所有代码,所以我不确定对象是如何堆叠的。

我尝试将新的 JButton 添加到没有布局的 JPanel 中。我设置了位置和大小,进行了验证,重新绘制......但没有显示任何内容。现在我有点迷失了 - 我该如何弄清楚为什么会发生这种情况?有没有某种方法可以浏览实时应用程序窗口并查看 AWT 对象树?我该如何解决此类问题?

免责声明:我对 AWT 几乎一无所知。

I'm trying to modify an existing application using AWT for dialogs, etc. I don't know all the code of the application, so I'm not sure how are the objects stacked.

I tried adding a new JButton to a JPanel with no layout. I set location and size, validated, repainted... and nothing is displayed. Now I'm a bit lost - how do I figure out why this happened? Is there some way to poke around a live application window and see the AWT objects tree? How do I approach this kind of problems?

Disclaimer: I know next to nothing about AWT.

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

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

发布评论

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

评论(1

扭转时空 2024-09-24 21:21:04

记录!每当您操作 AWT 堆栈上的任何内容时都会进行日志调用。大多数(全部?)AWT 对象也有不错的 toString 方法,因此可以获取和打印组件中的对象并获得有意义的调试信息(即 for(Component c : frame.getComponents()) { System.err.println(c .toString()); } ).

Logging! Making log calls whenever you're manipulating anything on the AWT stack. Most (all?) AWT objects also have decent toString methods, so it's possible to get and print objects in a component and get meaningful debugging information (i.e. for(Component c : frame.getComponents()) { System.err.println(c.toString()); } ).

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