6

Nimbus L&F を使用しています。次のコードを使用して、すべての JTable のフォント サイズをグローバルに変更しようとしています。

NimbusLookAndFeel nimbus = new NimbusLookAndFeel();
UIManager.setLookAndFeel(nimbus);
UIDefaults d = nimbus.getDefaults();
d.put("Table.font", new FontUIResource(new Font("SansSerif", Font.PLAIN, 18)));

アプリケーション内のすべての JTable の行が新しいフォントを使用しています。大きな解像度でテーブルを読みやすくするために、より大きなフォントサイズを使用しています。

しかし問題は、行の高さが変更されていないため、フォントが切り捨てられることです。私は次のコードを試しました:

d.put("Table.contentMargins", new Insets(50,50,50,50));
d.put("Table:\"Table.cellRenderer\".contentMargins", new Insets(50,50,50,50));

しかし、表示された表では何も変わりませんでした。

setRowHeight()各 JTable のインスタンスを呼び出すことなく、行の高さをグローバルに変更できますか?

4

1 に答える 1

6

基本的に、意図的なものはありません。BasicTableUIの関連するコード コメント:

// JTable's original row height is 16.  To correctly display the
// contents on Linux we should have set it to 18, Windows 19 and
// Solaris 20.  As these values vary so much it's too hard to
// be backward compatable and try to update the row height, we're
// therefor NOT going to adjust the row height based on font.  If the
// developer changes the font, it's there responsability to update
// the row height.

明るい面では、fi Nimbus のような一部の LAF は、rowHeight の ui プロパティを尊重します。

UIManager.put("Table.font", new FontUIResource(new Font("SansSerif", Font.PLAIN, 28)));
// here simply the font height, need to do better 
int height = 28;
UIManager.put("Table.rowHeight", height); 
于 2013-03-22T11:00:01.260 に答える