vote up 1 vote down star

how to introduce CSS style for various swing components like JButton,Jpanel etc. in a swing application?

flag

4 Answers

vote up 3 vote down

You don't. The HTML parser that some Swing components use does not even support most HTML tags; it does not support CSS at all.

If you need advanced HTML support in a Java app, you will have to use one of the third-party components that provide it.

link|flag
This is inaccurate. In my experience, using a <style> element in a <head> element after your <html> opening, you can put CSS rules. Note, however, that Swing support is CSS 1.0 at most - it looks like background will work, but overflow won't (which is quite a shame in my case...). – splintor Nov 23 at 19:15
vote up 2 vote down

You can use the various Swing properties to describe UI defaults that will be shared by all components - like fonts etc - but as Michael mentions; there's no way to do full CSS. For example:

FontUIResource f = new FontUIResource("Tahoma", Font.BOLD, 12)
UIManager.put("MenuBar.font", f); //javax.swing.UIManager
UIManager.put("Menu.font", f);
UIManager.put("RootPane.titleFont", f);
link|flag
vote up 0 vote down

I bookmarked this long back, but never evaluated:

project home page
article

link|flag
vote up 0 vote down

Maybe you could use this "javacss" project:

https://javacss.dev.java.net/

link|flag

Your Answer

Get an OpenID
or

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