gpt4 book ai didi

swing - 增加 Jtree 中文本的大小

转载 作者:行者123 更新时间:2023-12-04 06:08:03 24 4
gpt4 key购买 nike

我正在尝试增加 Jtree 中节点文本的大小。有没有办法在不改变其他摆动组件的情况下做到这一点?

谢谢!

最佳答案

使用 JTree.setFont .例如:

final Font currentFont = tree.getFont();
final Font bigFont = new Font(currentFont.getName(), currentFont.getStyle(), currentFont.getSize() + 10);
tree.setFont(bigFont);

关于swing - 增加 Jtree 中文本的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8120213/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com