组合框项目隐藏在其他控件后面。
Combo box items are hidden behind other controls.
错误截图:
在使用 Java Swing 创建的程序中,JComboBox
项目被 RSyntaxTextArea
遮挡。
当 运行 同一程序在 mac 上时,不会出现此症状。
它只发生在 windows 环境中。
有人可以给我一些解决方案的提示吗?
尝试使用:
comboBox.setLightWeightPopupEnabled(false);
请参阅 Mixing Lightweight and Heavyweight Components 了解为什么这会起作用。
错误截图:
在使用 Java Swing 创建的程序中,JComboBox
项目被 RSyntaxTextArea
遮挡。
当 运行 同一程序在 mac 上时,不会出现此症状。 它只发生在 windows 环境中。
有人可以给我一些解决方案的提示吗?
尝试使用:
comboBox.setLightWeightPopupEnabled(false);
请参阅 Mixing Lightweight and Heavyweight Components 了解为什么这会起作用。