开发者

JComboBox on a JPopupMenu

开发者 https://www.devze.com 2023-03-17 02:32 出处:网络
I\'m trying to use a compound Swing component as part of a Menu. Everything works just fine, apart from one detail: The component contains JComboBoxes and whenever the user clicks on one of them to o

I'm trying to use a compound Swing component as part of a Menu.

Everything works just fine, apart from one detail: The component contains JComboBoxes and whenever the user clicks on one of them to open its dropdown, the dropdown opens but the menu disappears. Is it possible to make the menu stay open when a JComboBox is clicked?

I sub-classed JMenu. This is the corresponding code:

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 upd开发者_JAVA技巧ateTree() {
                super.updateTree();
                pm.pack();
            }
        };
        pm.add(filterPanel);
    }
}

FilterPanel is the custom compound component. The pm.pack() is called to adapt the size of the JPopupMenu when the filterPanel changes in size.

Thanks for your help


are you meaning 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());
            }
        });
    }
}


Look at Jide OSS' PopupWindow. This provides an easy-to-use solution for this problem. Works fine for me.

Javadoc is here.

0

精彩评论

暂无评论...
验证码 换一张
取 消