• title: JComboBoxのArrowButtonを隠す tags: [JComboBox, ArrowButton, UIManager] author: aterai pubdate: 2008-12-22T13:06:25+09:00 description: ArrowButtonを隠して、JComboBoxの表示をJLabel風にします。

概要

ArrowButtonを隠して、JComboBoxの表示をJLabel風にします。

サンプルコード

JPanel p = new JPanel(new BorderLayout(5, 5));
Object[] items = {"JComboBox 11111:", "JComboBox 222:", "JComboBox 33:"};

UIManager.put("ComboBox.squareButton", Boolean.FALSE);
JComboBox comboBox = new JComboBox(items);
comboBox.setUI(new BasicComboBoxUI() {
  @Override protected JButton createArrowButton() {
    JButton button = new JButton(); //super.createArrowButton();
    button.setBorder(BorderFactory.createEmptyBorder());
    button.setVisible(false);
    return button;
  }
});
comboBox.setOpaque(true);
comboBox.setBackground(p.getBackground());
comboBox.setBorder(BorderFactory.createEmptyBorder(0,2,0,2));
comboBox.setFocusable(false);

UIManager.put("ComboBox.squareButton", Boolean.TRUE);
View in GitHub: Java, Kotlin

解説

上記のサンプルでは、以下のようにして、JComboBoxJLabel風に表示しています。

  • UIManager.put("ComboBox.squareButton", Boolean.FALSE);で、ArrowButtonの幅をそのまま使用するように変更
  • BasicComboBoxUI#createArrowButtonをオーバーライドして、ArrowButtonの代わりに幅高さ0setVisible(false)なボタンを作成
  • JComboBoxの背景色を親のJPanelと同じにする
  • JComboBoxがフォーカスを取得しないようにする

参考リンク

コメント