8

我正在尝试使用复合 Swing 组件作为菜单的一部分。

一切正常,除了一个细节:组件包含JComboBoxes 并且每当用户单击其中一个以打开其下拉列表时,下拉列表打开但菜单消失。单击a时是否可以使菜单保持打开状态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()称为适应大小。JPopupMenufilterPanel

谢谢你的帮助

4

2 回答 2

2

你是说这个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());
            }
        });
    }
}
于 2011-07-02T20:31:08.563 回答
1

看看 Jide OSS 的PopupWindow。这为这个问题提供了一个易于使用的解决方案。对我来说很好。

Javadoc 在这里

于 2012-05-22T13:31:05.630 回答