日期:2014-05-17 浏览次数:20616 次
//example.css文件: Component {//所有Component控件都使用的样式。 font-family: "SansSerif"; font-size: 14pt; font-weight: normal; } JLabel#title {//name为title的JLable使用的样式。 font-size: 200%; font-weight: bold; foreground: #0099ff; border: etchedBorder; } JButton:mouseover {//鼠标移到JButton之上时使用的样式。 font-weight: bold; } JButton.toolbar {//使用样式名为toolbar的使用的样式。 text: null; }
FileReader in = new FileReader("example.css"); Stylesheet stylesheet = new Stylesheet(in); in.close(); stylesheet.applyTo(mainFrame);