我正在尝试在合成器xml文件中设置JLabel的图标,但它不显示。我试图设置defaultIcon和icon属性,似乎没有。我应该在这里使用JLabel以外的东西吗?这是我的代码:
<style id="dayBgLabelStyle">
<imageIcon id="bg" path="images/WG_selectionFields-2.png"/>
<property key="defaultIcon" value="bg"/>
<property key="icon" value="bg"/>
</style>
<bind style="dayBgLabelStyle" type="name" key="dayBgLabel"/>
JLabel dayBgLabel = new JLabel();
dayBgLabel.setName("dayBgLabel");
dayBgLabel.setIcon(createImageIcon("images/selectionFields-2.png"));
protected static ImageIcon createImageIcon(String path) {
java.net.URL imgURL = testClass.class.getResource(path);
if (imgURL != null)
return new ImageIcon(imgURL);
else
return null;
}
答案 0 :(得分:0)
我知道这已经很晚了,但也许对其他人有所帮助。
我设法使用
添加图片 <imagePainter path="images/WG_selectionFields-2.png"" sourceInsets="1 1 5 5" />
而不是使用imageIcon。我希望这有帮助!