Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个名为 file 的 jmenu,当您单击它时,它会激活一个名为 quit 的菜单项
System.exit(0);
一切都很好,直到在 jtextfield 中输入任何内容并单击 enter 如果然后单击 jmenubar 上的文件按钮,则退出按钮隐藏在 jtextarea 下。
它很难解释,所以这里是输入前后的图像:
我已经调查过了,这可能与聚焦有关,但任何重新聚焦退出按钮的尝试都没有奏效。
看起来像问题awt.ScrollPane,必须swing.JScrollPane改用
awt.ScrollPane
swing.JScrollPane
您在混合轻量级和重量级组件时遇到问题