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)