轻量级组件优于重量级组件问题

发布于 2024-10-01 08:18:18 字数 463 浏览 3 评论 0原文

代码相当庞大,涉及很多不同的类/方法:

但要点是:

有一个主框架:A_Main 在主框架 A 中选择某些内容:打开一个 JDialog B_Dialog 这个 B_Dialog 上有一个 JPanel:C_Panel

这个 C_Panel 包含一个文本字段和一个按钮

单击文本字段/按钮:打开一个工具提示和另一个 JPanel:D_Panel

现在,问题是:

1)工具提示溢出了 B_Dialog 的大小,并且因此被截断

2) D_Panel 然而;即使它在 B_Dialog 的边界之外完全显示

2.1) 此 D_Panel 中有一些文本字段和下拉菜单

2.2) 鼠标事件在此 D_Panel 项(下拉菜单)中正常运行

2.3) 但键盘事件不能正确运行( Textfield)

如果您能提供帮助,我将很高兴!

谢谢!

The code pretty huge and involves a lot of different class/methods:

But here is the gist:

There is a main frame : A_Main
Selecting something in the main frame A: opens a JDialog B_Dialog
This B_Dialog has a JPanel on it: C_Panel

This C_Panel comprises of a textfield and a button

On clicking on the textfield/button: opens a tooltip and another JPanel: D_Panel

Now, the problem is:

1) The tooltip overflows the size of B_Dialog and therefore gets truncated

2) D_Panel however; even if its outside the boundary of B_Dialog gets displayed fully

2.1) There are some texfields and drop down menus in this D_Panel

2.2) The mouse events function correctly in this D_Panel items (drop down menus)

2.3) But Keyboard events do not function correct (Textfield)

I would be glad if you could help!

Thanks!

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

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

发布评论

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

评论(2

若水微香 2024-10-08 08:18:18

这只能在较新版本的 JDK 中完成。

请参阅混合重量级和轻量级组件

This can only be done in newer versions of the JDK.

See, Mixing Heavyweight and Lightweight Components.

┈┾☆殇 2024-10-08 08:18:18

现在,当我尝试在 JAR JPanel 的文本字段中输入某些内容时,我无法执行此操作,因为它会从主 JDialog 的边框中弹出包含它的代码>。

JPanel 周围添加一个 JScrollPane,并允许其水平和垂直扩展。如果这不起作用,您可能需要自定义布局管理器,或使用默认布局管理器之一,例如 GridBagLayout

此外,您需要先获得焦点才能输入文本,但这似乎不是这里的问题。

Now, when I try to enter something in the JAR JPanel's text field, I am not able to do so as this pops out of the border of the main JDialog that contains it.

Add a JScrollPane around the JPanel, and allow it to expand both horizontally and vertically. If this doesn't work, you may need a customized Layout Manager, or use one of the default ones like GridBagLayout.

Also, you'll need to gain focus before you can enter text, but that doesn't seem to be the problem here.

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