我正在尝试使用复合Swing组件作为菜单的一部分。
除了一个细节之外,一切都运行良好:该组件包含JComboBox
es,每当用户点击其中一个打开其下拉列表时,下拉列表就会打开,但菜单会消失。单击JComboBox
时是否可以使菜单保持打开状态?
我将JMenu
分类。这是相应的代码:
public class FilterMenu extends JMenu {
public FilterMenu(String name) {
super(name);
final JPopupMenu pm = this.getPopupMenu();
final FilterPanel filterPanel = new FilterPanel(pm) {
@Override
public void updateTree() {
super.updateTree();
pm.pack();
}
};
pm.add(filterPanel);
}
}
FilterPanel
是自定义复合组件。调用pm.pack()
以在JPopupMenu
更改大小时调整filterPanel
的大小。
感谢您的帮助
答案 0 :(得分:2)
你的意思是this bug
import javax.swing.*;
import java.awt.event.*;
public class Test {
public static void main(String[] args) {
JFrame frame = new JFrame();
frame.setSize(400, 400);
frame.setVisible(true);
String[] list = {"1", "2", "3", "4",};
JComboBox comb = new JComboBox(list);
final JPopupMenu pop = new JPopupMenu();
pop.add(comb);
frame.addMouseListener(new MouseAdapter() {
@Override
public void mousePressed(MouseEvent e) {
System.out.println("mousePressed");
pop.show(e.getComponent(), e.getX(), e.getY());
}
});
}
}
答案 1 :(得分:1)
看看Jide OSS'PopupWindow。这为此问题提供了易于使用的解决方案。对我来说很好。
Javadoc是here。