如何让JComboBox中的内容显示在中心?

时间:2012-08-23 03:06:06

标签: java swing center jcombobox cellrenderer

目前我有JComboBox,我怎样才能将内容集中在其中?

String[] strs = new String[]{"15158133110", "15158133124", "15158133458"};
JComboBox com = new JComboBox(strs);

2 个答案:

答案 0 :(得分:14)

您需要创建一个渲染器,然后将其应用于JComboBox

DefaultListCellRenderer dlcr = new DefaultListCellRenderer(); 
dlcr.setHorizontalAlignment(DefaultListCellRenderer.CENTER); 
com.setRenderer(dlcr); 

也导入了这个,

import javax.swing.DefaultListCellRenderer; 

答案 1 :(得分:1)

((JLabel)jComboBox1.getRenderer()).setHorizontalAlignment(SwingConstants.CENTER);

试试这个