java 怎样设置Border标题的字体大小

panel.setBorder(BorderFactory.createTitledBorder(BorderFactory.createLineBorder(Color... panel.setBorder(BorderFactory.createTitledBorder(
BorderFactory.createLineBorder(Color.BLACK,2),
"用户录",TitledBorder.CENTER,TitledBorder.TOP));
我想把“用户登录”这个标题字体加大 可是不知道怎么实现
展开
 我来答
w1985g
2010-05-05 · TA获得超过1633个赞
知道小有建树答主
回答量:1190
采纳率:100%
帮助的人:1037万
展开全部
createTitledBorder(Border border, String title, int titleJustification, int titlePosition, Font titleFont)
向现有边框添加一个标题,使其具有指定的位置和默认的文本颜色(由当前外观确定)。

直接在后面再加个字体
panel.setBorder(BorderFactory.createTitledBorder(
BorderFactory.createLineBorder(Color.BLACK,2),
"用户录",TitledBorder.CENTER,TitledBorder.TOP,new java.awt.Font("宋体",0,26)));
//宋体,普通,26号字,把中间的0改成1就是加粗
百度网友12ee0fd
2015-07-20 · TA获得超过4.7万个赞
知道大有可为答主
回答量:1.1万
采纳率:66%
帮助的人:1953万
展开全部

TitledBorder    类的文档讲了:

If the border, font, or color property values are not
specified in the constuctor or by invoking the appropriate
set methods, the property values will be defined by the current
look and feel, using the following property names in the
Defaults Table:

"TitledBorder.border"

"TitledBorder.font"

"TitledBorder.titleColor"

UIDefaults defaults=UIManager.getLookAndFeelDefaults();
String key = "TitledBorder.font";
Font font = defaults.getFont(key).deriveFont(18.0f);
UIManager.put(key,new javax.swing.plaf.FontUIResource(font));
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式