Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Java 中,您可以使用 getColumnModel 方法设置 JTable 的首选列宽,但在 scala swing 中您不能这样做。那么有没有办法设置 Scala Swing Table 的列宽?
大多数 scala.swing 组件只是“包装”Java 组件。Java 组件中的所有方法都可以通过对等点访问。
(new Table).peer.getColumnModel.getColumn(0).setPreferredWidth(0)