如何更改JComboBox显示区域的外观



我正在为JComboBox使用自定义BasicComboBoxRenderer,并且我已经更改了下拉列表中项目的外观。然而,这些更改也适用于组合框中显示的单个顶部项目(不知道如何调用它)。

如果可能的话,我希望顶部的项目独立于列表中的其他项目。我还想在聚焦时去掉顶部项目的蓝色(setFocusable(false)不是我想要的)。

我曾尝试使用"渲染器索引"(-1)来影响顶部项目,但似乎没有帮助。

有什么想法吗?

p.S不幸的是,我无法添加更清晰的图像(没有声誉)。

编辑:当我说我希望顶部项目独立于下拉列表中的所有其他项目时,我的意思是看起来总是与其他项目不同。例如,在我的自定义BasicComboBoxRenderer中,我已将所选项目设置为具有不同的背景,但此背景也适用于顶部项目(因为所选项目成为组合框的顶部项目)。

编辑2:顶部项目=我指的是组合框显示区域,所以我想影响显示区域显示的项目,而不是下拉列表中的第一个项目。我通过在组合框本身上使用setBackground和setFocusable(false)(这不是很有帮助,因为我想保留焦点机制)来做到这一点。但问题是(除了焦点问题),例如,如果我通过自定义BasicComboBoxRenderer或ListCellRenderer类为列表中的每个项目设置边框,那么显示区域中显示的项目上就会出现相同的边框。这里有两个问题:

--有什么方法可以区分下拉列表中项目的布局和显示区域中的单个项目吗?

--有没有办法在不禁用聚焦机制的情况下禁用组合框的聚焦颜色,就像我们在按钮上使用setFocusPainted(false)一样?(我也尝试在组合框上添加一个自定义FocusListener,但通过focusGained()对背景进行的任何更改都只影响按钮,而不会影响显示区域中显示的项目)。

很抱歉造成混乱和多次编辑。。。

  • 查看@camicker、的组合框提示

  • 定义的提示不能从JComboBox.getSelectedXxx 返回任何值

编辑

BasicComboBoxRenderer或ListCellRenderer可以这样做

import java.awt.*;
import javax.swing.*;
public class TestHighLightRow {
    public void makeUI() {
        Object[] data = {"One", "Two", "Three"};
        JComboBox comboBox = new JComboBox(data);
        comboBox.setPreferredSize(comboBox.getPreferredSize());
        comboBox.setRenderer(new HighLightRowRenderer(comboBox.getRenderer()));
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
        frame.getContentPane().add(comboBox);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }
    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                new TestHighLightRow().makeUI();
            }
        });
    }
    public class HighLightRowRenderer implements ListCellRenderer {
        private final ListCellRenderer delegate;
        private int height = -1;
        public HighLightRowRenderer(ListCellRenderer delegate) {
            this.delegate = delegate;
        }
        @Override
        public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
            Component component = delegate.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
            Dimension size = component.getPreferredSize();
            if (index == 0) {
                component.setBackground(Color.red);
                if (component instanceof JLabel) {
                    ((JLabel) component).setHorizontalTextPosition(JLabel.CENTER);
                }
            }
            return component;
        }
    }
}

EDIT2

JComboBox有两种状态

  • 可编辑

  • 不可编辑(_E)

基本上所有的值都可以从UIManager访问,快捷键

import java.awt.*;
import java.util.Vector;
import javax.swing.*;
import javax.swing.UIManager;
import javax.swing.plaf.ColorUIResource;
import javax.swing.plaf.metal.MetalComboBoxButton;
public class MyComboBox {
    private Vector<String> listSomeString = new Vector<String>();
    private JComboBox someComboBox = new JComboBox(listSomeString);
    private JComboBox editableComboBox = new JComboBox(listSomeString);
    private JComboBox non_EditableComboBox = new JComboBox(listSomeString);
    private JFrame frame;
    public MyComboBox() {
        listSomeString.add("-");
        listSomeString.add("Snowboarding");
        listSomeString.add("Rowing");
        listSomeString.add("Knitting");
        listSomeString.add("Speed reading");
//
        someComboBox.setPrototypeDisplayValue("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
        someComboBox.setFont(new Font("Serif", Font.BOLD, 16));
        someComboBox.setEditable(true);
        someComboBox.getEditor().getEditorComponent().setBackground(Color.YELLOW);
        ((JTextField) someComboBox.getEditor().getEditorComponent()).setBackground(Color.YELLOW);
//
        editableComboBox.setPrototypeDisplayValue("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
        editableComboBox.setFont(new Font("Serif", Font.BOLD, 16));
        editableComboBox.setEditable(true);
        JTextField text = ((JTextField) editableComboBox.getEditor().getEditorComponent());
        text.setBackground(Color.YELLOW);
        JComboBox coloredArrowsCombo = editableComboBox;
        Component[] comp = coloredArrowsCombo.getComponents();
        for (int i = 0; i < comp.length; i++) {
            if (comp[i] instanceof MetalComboBoxButton) {
                MetalComboBoxButton coloredArrowsButton = (MetalComboBoxButton) comp[i];
                coloredArrowsButton.setBackground(null);
                break;
            }
        }
//
        non_EditableComboBox.setPrototypeDisplayValue("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
        non_EditableComboBox.setFont(new Font("Serif", Font.BOLD, 16));
//
        frame = new JFrame();
        frame.setLayout(new GridLayout(0, 1, 10, 10));
        frame.add(someComboBox);
        frame.add(editableComboBox);
        frame.add(non_EditableComboBox);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setLocation(100, 100);
        frame.pack();
        frame.setVisible(true);
    }
    public static void main(String[] args) {
        UIManager.put("ComboBox.background", new ColorUIResource(Color.yellow));
        UIManager.put("JTextField.background", new ColorUIResource(Color.yellow));
        UIManager.put("ComboBox.selectionBackground", new ColorUIResource(Color.magenta));
        UIManager.put("ComboBox.selectionForeground", new ColorUIResource(Color.blue));
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                MyComboBox aCTF = new MyComboBox();
            }
        });
    }
}

相关内容

  • 没有找到相关文章

最新更新