vote up 0 vote down star

I need to make a font underline and blue for a hyperlink in one of my JButtons, but it seems the font class has no obvious way to do this. I can't use attributedtext because I'm not going to be displaying this with Graphics class. Is there anyway I can accomplish this? I just need the title of my JButton to be blue and underlined.

flag

71% accept rate

2 Answers

vote up 0 vote down
JButton button = new JButton("OK");
button.setBackground(Color.blue);

Font buttonFont=new Font(button.getFont().getName(),Font.UNDERLINED+Font.BOLD,button.getFont().getSize());  
button.setFont(buttonFont);
link|flag
I think the font underline constant may actually be "Font.UNDERLINE". Try both. – BlueNovember Aug 7 at 0:43
Ah, see: stackoverflow.com/questions/325840/… – BlueNovember Aug 7 at 0:44
vote up 0 vote down check

I ended up solving the problem of not being able to underline text by surrounding my string with ..... tags.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.