我正在尝试实现Synth的外观和感觉,并没有对实际软件的外观做任何事情。我的文件路径是正确的,因为我已经检查过了。有人知道为什么这不起作用:
爪哇:
try {
SynthLookAndFeel laf = new SynthLookAndFeel();
laf.load(new FileInputStream("src/look_and_feel.xml"), Truss.class);
UIManager.setLookAndFeel(laf);
} catch (Exception e) {
e.printStackTrace();
}
XML:
<synth>
<style id="default">
<font name="Courier" size="14" />
</style>
<bind style="default" type="region" key="Button" />
</synth>
提前致谢。