如何填充组合框?

时间:2013-06-03 12:54:30

标签: java swing jcombobox

我在我的应用程序中使用JComboBox,我想增加填充。我的组合框中的所有初始内容都与左边框非常接近,所以我想填充它以使其看起来有些清晰。

这是我在我的应用程序中使用的一些示例代码:

jPanelPatientInfo.add(jComboBoxNation, new GridBagConstraints(1, 3, 1, 1, 0.0, 0.0,   
GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL, new Insets(0, 10, 0, 0), 0, 0));

3 个答案:

答案 0 :(得分:2)

我假设你想增加JComboBox(列表部分)的里面的填充。在提问时你需要更加具体。

这是填充JComboBox内部的一种方法。

import java.awt.Component;

import javax.swing.DefaultListCellRenderer;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.ListCellRenderer;
import javax.swing.border.Border;
import javax.swing.border.EmptyBorder;

public class BorderListCellRenderer implements ListCellRenderer {

    private Border insetBorder;

    private DefaultListCellRenderer defaultRenderer;

    public BorderListCellRenderer(int rightMargin) {
        this.insetBorder = new EmptyBorder(0, 2, 0, rightMargin);
        this.defaultRenderer = new DefaultListCellRenderer();
    }

    @Override
    public Component getListCellRendererComponent(JList list, Object value,
            int index, boolean isSelected, boolean cellHasFocus) {
        JLabel renderer = (JLabel) defaultRenderer
                .getListCellRendererComponent(list, value, index, isSelected,
                        cellHasFocus);
        renderer.setBorder(insetBorder);
        return renderer;
    }

}

然后,你使用这样的类。

JComboBox comboBox = new JComboBox(elements);
comboBox.setRenderer(new BorderListCellRenderer(20));

答案 1 :(得分:1)

在面板上为组件提供更多空间的最简单方法是向面板添加边框。看起来你正在使用GridBagLayout,因此代码将类似于:

JPanel panel = new JPanel( new GridBagLayout() );
panel.addBorder( new EmptyBorder(10, 10, 10, 10) );
panel.add(component1, constraints);

现在,如果您在不同的行上添加组件,它们将缩进10个像素。

答案 2 :(得分:0)

尝试在组合框上调用setPrototypeDisplayValue。这将根据使用的文本量设置宽度。如链接文档中所述,如果不存在,那么它会根据每个元素的大小使用首选宽度。