JTable调整列宽或高
在我的 JTable 中,有一种方法可以限制用户使用鼠标调整行的高度或列的宽度。我已经在使用
JTable table=new JTable();
table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
table.getTableHeader().setReorderingAllowed(false);
该表位于滚动面板内。
In my JTable is there a way to restrict the user in adjusting the height of the row or width of a column using the mouse.I am already using
JTable table=new JTable();
table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
table.getTableHeader().setReorderingAllowed(false);
The table is inside a scroll panel.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
table.getTableHeader().setResizingAllowed(false);
table.getTableHeader().setResizingAllowed(false);