首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

表体设立颜色

2012-09-04 
表体设置颜色//取得选定的行int[] rows getBillCardPanel().getBillTable().getSelectedRows()//取得Bi

表体设置颜色

//取得选定的行int[] rows = getBillCardPanel().getBillTable().getSelectedRows();//取得BillScrollPanelBillScrollPanel panel = getBillCardPanel().getBodyPanel();//取得BillModelBillModel bm = getBillModel().getBillModel();//取得表体列集合BillItem[] items = bm.getBodyItems();//你想设置的颜色Color color_row = Color.RED;//迭代行for(int i=0,len = rows.length();i<len ;i++{    int row = rows[i];    //再迭代列,因为只能给某列设背景色,所以该行的每一列都要迭代    for (int column = 0, len = items.length; column < len; column++) {        BillItem item = items[column];         if (item == null)            continue;         if (!item.isShow())            continue;         String itemKey = item.getKey();        pane.setCellBackGround(row, itemKey, color_row);    }}
?

热点排行