프로그래밍 관련/언어들의 코딩들 C++ JAVA C# 등..

java 프레임, JPanel 패널에 백그라운드에 이미지설정 또는 투명값 설정 관련

AlrepondTech 2015. 3. 9. 16:53
반응형

 

 

=======================

=======================

=======================

 

 

 

 

 

 

 

 JPanel test = new  JPanel();

 

....

....

....

 

test.setBackground(new Color(255, 0, 0, 255));   //레드

test.setBackground(new Color(0, 255, 0, 255)); //그린

test.setBackground(new Color(0, 0, 255, 255)); //블루

test.setBackground(new Color(255, 0, 0, 0));    //투명

 

 

 

 

=======================

=======================

=======================

 

 

반응형