读书人

swing 整合table列宽

发布时间: 2012-10-07 17:28:51 作者: rapoo

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);
}

读书人网 >编程

热点推荐