① JAVA界面設計怎麼插入背景圖片
可以利用標簽組件來設置。
② java中的swing設計界面時怎麼加上背景圖片。而不覆蓋什麼label等控制項
通過以下方式設置下背景就可以了:
background=newImageIcon("images/backImage.png");
backImage=newJLabel(background);
backImage.setBounds(0,0,background.getIconWidth(),
background.getIconHeight());
backPanel=(JPanel)this.getContentPane();
backPanel.setOpaque(false);
this.getLayeredPane().setLayout(null);
this.getLayeredPane().add(backImage,newInteger(Integer.MIN_VALUE));
backPanel.setLayout(newBorderLayout());
這樣就可以把圖片放在最下面了,效果圖: