本文介绍了增加Jtree中文本的大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试增加Jtree中节点文本的大小.有/没有改变其他摆动组件的方法吗?
I'm trying to increase the size of the text of nodes in my Jtree. Is there any way to do this with/without altering other swing components?
谢谢!
推荐答案
使用 JTree.setFont
.例如:
Use JTree.setFont
. For example:
final Font currentFont = tree.getFont();
final Font bigFont = new Font(currentFont.getName(), currentFont.getStyle(), currentFont.getSize() + 10);
tree.setFont(bigFont);
这篇关于增加Jtree中文本的大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!