윈도우 배경색은 JFrame이나 Frame의 setBackground(Color color) 메소드를 직접 호출하여 표시되는 색상을 말합니다.
이 메소드를 직접 호출하면 실제로 배경색이 설정되지만 표시되는 것은 직접 JFrame이나 Frame이 아니라 JFrame.getContentPane()이며 JFrame의 contentPane은 기본적으로 Color.WHITE로 설정됩니다. 따라서 JFrame이나 Frame의 배경색을 어떻게 설정하든 상관없이 표시되는 것은 contentPane뿐입니다.
추천 관련 비디오 튜토리얼: java 비디오 튜토리얼
해결책:
방법 1: 초기화를 완료한 후 getContentPane() 메서드를 호출하여 contentPane 컨테이너를 가져온 다음 보이지 않도록 설정합니다. setVisible(false).
코드는 다음과 같습니다.
import javax.swing.*; import java.awt.* public class TestMenuBar1 { public static void main(String arg[]) { createNewMenu ck=new createNewMenu("第一个窗口"); } } class createNewMenu extends JFrame{ public createNewMenu(String title) { getContentPane().setVisible(false); setBackground(Color.blue); //设置窗口背景颜色 setTitle(title); setBounds(200,200,500,500); //设置窗口位置和大小 setVisible(true); //设置窗口可见 } }
방법 2: this.getContentPane().setBackground(Color.blue)를 직접 추가합니다.
코드는 다음과 같습니다.
import java.awt.*; import javax.swing.*; public class TestMenuBar1 { public static void main(String arg[]) { createNewMenu ck=new createNewMenu("第一个窗口"); } } class createNewMenu extends JFrame{ public createNewMenu(String title) { setTitle(title); setBounds(200,200,500,500); setVisible(true); this.getContentPane().setBackground(Color.blue); } }
추천 관련 기사 및 튜토리얼: Java 입문 튜토리얼
위 내용은 자바 창 배경색 설정의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!