轻量级组件优于重量级组件问题
代码相当庞大,涉及很多不同的类/方法:
但要点是:
有一个主框架: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这只能在较新版本的 JDK 中完成。
请参阅混合重量级和轻量级组件。
This can only be done in newer versions of the JDK.
See, Mixing Heavyweight and Lightweight Components.
在
JPanel
周围添加一个JScrollPane
,并允许其水平和垂直扩展。如果这不起作用,您可能需要自定义布局管理器,或使用默认布局管理器之一,例如GridBagLayout
。此外,您需要先获得焦点才能输入文本,但这似乎不是这里的问题。
Add a
JScrollPane
around theJPanel
, 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 likeGridBagLayout
.Also, you'll need to gain focus before you can enter text, but that doesn't seem to be the problem here.