本文介绍了帆布下的JPopupMenu显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个画布,一些文本字段和上下文菜单。
当我开始在画布上的应用程序,右击弹出菜单显示。但是,当我写的文本字段的东西比我右键单击画布上,在弹出的将画布后面的节目。
不知道如何解决这个问题?
解决方案
JPopupMenu.setDefaultLightWeightPopupEnabled(假);
解决这个问题。
I have a Canvas, some text fields and a context menu.
When I start the application and right click on the canvas a popup menu shows. But when I write something inside the text field than I right click on the canvas, the popup will shows behind the canvas.
Any idea how to fix that ?
解决方案
JPopupMenu.setDefaultLightWeightPopupEnabled( false );
solved the issue.
这篇关于帆布下的JPopupMenu显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!