6
import javax.swing.*;

public class test
{   
    public static void main(String[] args) throws Exception
    {
        JFrame frame = new JFrame("Test");
        frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        frame.setSize(120,80);      
        JComboBox cb = new JComboBox();
        cb.addItem("A very long combo-box item that doesn't fit no. 1");
        cb.addItem("A very long combo-box item that doesn't fit no. 2");
        frame.add(cb);
        frame.validate();
        frame.setVisible(true);
    }
}

すべてのテキストが表示されるようにコンボ ボックス項目を表示するにはどうすればよいですか?
今、私はこのようなものを持っています:
ここに画像の説明を入力
折りたたまれている間、コンボ ボックスのサイズを変更したくありません。
拡張部分の幅を広げたいだけです。

4

6 に答える 6

8

これが役立つかもしれないと思います。

リンクからのコード

public class WiderDropDownCombo extends JComboBox {

    private String type;
    private boolean layingOut = false;
    private int widestLengh = 0;
    private boolean wide = false;

    public WiderDropDownCombo(Object[] objs) {
        super(objs);
    }

    public boolean isWide() {
        return wide;
    }

    // Setting the JComboBox wide
    public void setWide(boolean wide) {
        this.wide = wide;
        widestLengh = getWidestItemWidth();

    }

    public Dimension getSize() {
        Dimension dim = super.getSize();
        if (!layingOut && isWide())
            dim.width = Math.max(widestLengh, dim.width);
        return dim;
    }

    public int getWidestItemWidth() {

        int numOfItems = this.getItemCount();
        Font font = this.getFont();
        FontMetrics metrics = this.getFontMetrics(font);
        int widest = 0;
        for (int i = 0; i < numOfItems; i++) {
            Object item = this.getItemAt(i);
            int lineWidth = metrics.stringWidth(item.toString());
            widest = Math.max(widest, lineWidth);
        }

        return widest + 5;
    }

    public void doLayout() {
        try {
            layingOut = true;
            super.doLayout();
        } finally {
            layingOut = false;
        }
    }

    public String getType() {
        return type;
    }

    public void setType(String t) {
        type = t;
    }

    public static void main(String[] args) {
        String title = "Combo Test";
        JFrame frame = new JFrame(title);

        String[] items = {
                "I need lot of width to be visible , oh am I visible now",
                "I need lot of width to be visible , oh am I visible now" };
        WiderDropDownCombo simpleCombo = new WiderDropDownCombo(items);
        simpleCombo.setPreferredSize(new Dimension(180, 20));
        simpleCombo.setWide(true);
        JLabel label = new JLabel("Wider Drop Down Demo");

        frame.getContentPane().add(simpleCombo, BorderLayout.NORTH);
        frame.getContentPane().add(label, BorderLayout.SOUTH);
        int width = 200;
        int height = 150;
        frame.setSize(width, height);
        frame.setVisible(true);

    }
}
于 2012-06-30T22:54:31.440 に答える
2

もう少し複雑な回避策は、@camickrによる Combo Box Popup です。

  • setScrollBarRequired– true の場合、必要に応じて水平スクロール バーが自動的に表示されます
  • setPopupWider– true の場合、ポップアップの幅はコンボ ボックスの項目に基づきます。幅がコンボ ボックスより小さくなることはありません。
  • setMaximumWidth– 表示するアイテムが不当に長い場合に備えて、ポップアップの幅を制御できます。
  • setPopupAbove– true の場合、ポップアップはコンボ ボックスの上に表示されます。
  • 聞いているPopupMenuListener
于 2012-06-30T23:09:19.567 に答える
1

Pshemo によって提供されたコードの縮小版:

import javax.swing.JComboBox;
import java.awt.Dimension;

public class JComboBoxWider extends JComboBox {
    private int listWidth=0;

    public JComboBoxWider(Object[] objs) {
        super(objs);
    }

    public Dimension getSize() {
        Dimension dim = super.getSize();
        if (listWidth>0)
            dim.width = listWidth;
        return dim;
    }

    public void setListWidth(int listWidth) {
        this.listWidth = listWidth;
    }
}
于 2014-03-19T16:32:30.103 に答える