JComboBoxのArrowButtonを隠す
Total: 9839
, Today: 1
, Yesterday: 1
Posted by aterai at
Last-modified:
概要
ArrowButton
を隠して、JComboBox
の表示をJLabel
風にします。
Screenshot
Advertisement
サンプルコード
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解説
上記のサンプルでは、以下のようにしてJComboBox
の矢印ボタンを非表示に設定しています。
UIManager.put("ComboBox.squareButton", Boolean.FALSE)
を設定してJComboBox
の高さと同じ幅ではなくArrowButton
の幅をそのまま使用するように変更BasicComboBoxUI#createArrowButton
をオーバーライドしてArrowButton
の代わりに幅と高さが0
でsetVisible(false)
なJButton
を作成JComboBox
の背景色を親のJPanel
と同じ色に変更JComboBox
がフォーカスを取得不可になるよう設定