up vote 0 down vote favorite
share [g+] share [fb]

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.

link|improve this question

76% accept rate
feedback

2 Answers

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|improve this answer
I think the font underline constant may actually be "Font.UNDERLINE". Try both. – RJFalconer Aug 7 '09 at 0:43
Ah, see: stackoverflow.com/questions/325840/… – RJFalconer Aug 7 '09 at 0:44
feedback
up vote 0 down vote accepted

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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