2013-12-11 59 views
-1

我想在我附加的應用程序中添加背景設置,但它不適合我。我附上了完整的源代碼+我想如何在我的應用程序中使用背景的截圖。誰能幫我這個?如何在我的Java桌面應用程序中插入背景圖像?

截圖

just an example

Source Code(具體GUI菜單)

+0

我沒有源代碼,對不起。 – Chiron

+0

請不要使用[link shorteners](http://meta.stackexchange.com/questions/113658/no-url-shorteners)或[簽名](http://meta.stackexchange.com/questions/5029/) -taglines的簽名,不允許)。請嵌入圖片並嘗試將代碼縮減爲[簡短,自包含,正確的示例](http://sscce.org/),您可以將其包含爲代碼片段。 – Zong

回答

1

我不會去通過所有源 - 但它聽起來像你想設置背景圖片在面板上。

你可以通過覆蓋面板顏色代碼來做到這一點。

@Override 
protected void paintComponent(Graphics grphcs) { 
    grphcs.drawImage(background, 0, 0, getWidth(), getHeight(), null); 
} 

其中的背景是:

private final Image background; 

,並在構造函數:

background = ImageIO.read(getClass().getResourceAsStream("FILENAME.jpg")); 
相關問題