Bold titledBorder

后端 未结 4 677
既然无缘
既然无缘 2021-01-19 06:28

I tried doing

UIManager.getDefaults().put(\"TitledBorder.font\", Font.BOLD);
contentPanel.setBorder(new TitledBorder(\"Client Downloader\"));
4条回答
  •  礼貌的吻别
    2021-01-19 06:44

    Set the font when you create the border instead. Something like:

     new TitledBorder(new LineBorder(Color.WHITE, 1), "Client Downloader",
                                     TitledBorder.LEFT, TitledBorder.TOP, Font.BOLD);
    

提交回复
热议问题