首页>代码>java swing JTable的中级应用>/SwingComponents/src/com/learn/swing/jtable/cellrenderer/GenderRenderer.java
package com.learn.swing.jtable.cellrenderer;

import java.awt.Component;

import javax.swing.JComboBox;
import javax.swing.JTable;
import javax.swing.table.TableCellRenderer;

/**
 * 使表格“性别”一列的单元格出现JComboBox组件
 * @author Administrator
 *
 */
@SuppressWarnings("serial")
public class GenderRenderer extends JComboBox<String> implements TableCellRenderer{

	// 添加下拉选项
	public GenderRenderer(){
        super();
        addItem("男");
        addItem("女");
	}

	@Override
	public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus,
			int row, int column) {
		if(isSelected){
            setForeground(table.getForeground());
            super.setBackground(table.getBackground());
	   }else{
	        setForeground(table.getForeground());
	        setBackground(table.getBackground());
	   }
	   boolean isMale = ((Boolean)value).booleanValue();
	   setSelectedIndex(isMale? 0 : 1);
	   return this;
	}

}
最近下载更多
wyx065747  LV67 2022年4月7日
Demo1111  LV30 2021年12月12日
一个好人520  LV10 2021年9月29日
yangctz  LV24 2021年9月10日
ysc123  LV5 2021年7月8日
香菇肉饼汤  LV8 2020年5月21日
上善_若水  LV3 2020年2月19日
liaozhensy  LV1 2019年7月18日
yongzheng132  LV17 2019年6月21日
ty93pical  LV2 2019年4月22日
最近浏览更多
1219610676  LV4 2023年12月7日
ezra77934  LV2 2023年9月16日
hufuman  LV23 2023年4月6日
漫步的海星  LV4 2023年3月16日
2252536772  LV21 2022年11月9日
lcb813  LV1 2022年7月1日
a318888331  LV13 2022年5月30日
忧麦紫  LV18 2022年3月2日
zkingzz 2021年12月21日
暂无贡献等级
Demo1111  LV30 2021年12月12日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友