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

swing 整合table列宽

2012-10-07 
swing 调整table列宽/** * 调整列宽 */private void adjustColumnWidth() {// Tweak the appearance of th

swing 调整table列宽
/**
* 调整列宽
*/
private void adjustColumnWidth() {
// Tweak the appearance of the table by manipulating its column model
TableColumnModel colmodel = table.getColumnModel();

// Set column widths
colmodel.getColumn(0).setPreferredWidth(20);
colmodel.getColumn(1).setPreferredWidth(20);
colmodel.getColumn(2).setPreferredWidth(40);
colmodel.getColumn(3).setPreferredWidth(80);
colmodel.getColumn(4).setPreferredWidth(200);
colmodel.getColumn(5).setPreferredWidth(5);
}

热点排行