e919. locking the width of a column in a jtable component.txt
来自「这里面包含了一百多个JAVA源文件」· 文本 代码 · 共 16 行
TXT
16 行
This example demonstrates how to set the width of a column and prevent it from being resized by the user.
int rows = 3;
int cols = 3;
JTable table = new JTable(rows, cols);
// Add data here
// Lock the second column of the table to be 100 pixels wide
int vColIndex = 1;
int width = 100;
TableColumn col = table.getColumnModel().getColumn(vColIndex);
col.setMinWidth(width);
col.setMaxWidth(width);
col.setPreferredWidth(width);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?