① java窗口的背景顏色
因為JFrame窗口,其實從下到上分為好幾層:RootPane LayeredPane ContentPane GlassPane
其中最上面的GlassPane是透明的。所以設置背內景色,需要設置在容ContentPane上才能顯示。
② JAVA事件處理,改變窗體背景顏色...
改變來不了顏色是因為你源上面的那個程序在主窗口上又加了一個Panel,而你去改變的卻是主窗口的背景色,你可以把按鈕直接這樣寫:con.add(redButton);……去掉panel,然後在actionPerformed方法中這樣寫:frame.getContentPane().setBackground(backgroundcolor);或者你去改變panel的背景色。
③ 在JAVA里,怎麼利用一個單獨的類生成的窗體里的按鈕控制另一個主窗體的背景顏色。
寫過一個類似的java程序,效果圖,如下, 思路分享到後面.
實現的方法很多專.代碼比較亂,所以提供幾種屬思路:
可以採用MVC結構, 使用Controller 來控制 窗口 的顏色進行改變
也可以使用帶有返回值的對話框(彈出框),用返回值來控制窗口的背景顏色
也可以把主窗口當成參數傳入 新的窗口裡, 然後在新的窗口裡點擊按鈕時,改變主窗口的背景色
也可以用一個配置文件作為橋梁, 當在新的窗口裡設置背景顏色,等參數時 修改配置文件.然後主窗口讀取配置文件, 來修改背景色(可能需要 重啟才能改變外觀)
使用JavaFX來替換Swing框架, 因為JavaFX更換背景,變更外觀很方便,就是替換CSS文件即可
④ 請問java JFrame窗體 怎樣設置背景顏色和背景圖片
importjava.awt.Color;望採納
importjava.awt.Graphics;
importjava.awt.Image;
importjava.awt.Toolkit;
importjavax.swing.JFrame;
publicclassMainextendsJFrame{
Imageimage;
publicMain(){
image=Toolkit.getDefaultToolkit().getImage("B.jpg");
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setResizable(false);
this.setSize(400,400);
this.setTitle("背景測試");
setBackground(Color.BLACK);
/*設置背景顏色,但是底下重寫的paint函數把整個窗口覆蓋了所以看不出,注釋掉下面的代碼就可以看見黑色的窗口了*/
}
publicstaticvoidmain(Stringargs[]){
newMain();
}
@Override
publicvoidpaint(Graphicsg){
//TODOAuto-generatedmethodstub
super.paint(g);
g.drawImage(image,0,0,400,400,this);
}
}
⑤ java 中怎樣設置窗口的顏色
調用需要設置顏色的控制項的setBackgroud();方法就可以了。
但是設置JFrame和的背景色,一般就是下面的做法
JFrame frame = new JFrame();
frame.setBackground(Color.Red);
JLabel l = new JLabel();
l.setBackground(Color.Yellow);
frame.add(l);
結果根本就沒有反應。這是由於Swing跟AWT有千絲萬縷的聯系,它既要支持AWT又要有自己新的體系,所以呢,這個如果對於AWT中的Frame是可以直接通過setBackground來設置背景色,但是對於JFrame則不可以,應該採用下面的方法:
JFrame frame = new JFrame();
frame.getContentPane().setBackground(Color.Red);
而對於JLabel來說則要設置JLabel為不透明的才行,即
JLabel comp = new JLabel(value);
comp.setBackground(color);
comp.setOpaque(true);
這句代碼frame.setBackground(Color.Red);
改變的是框架的顏色,框架的上面還有窗格,所以你要改變窗格的顏色才可以側低改變框架的顏色
在主函數里加Containerframe.getContentPane()意思是獲得窗格
setBackground(Color.Red);改變窗格顏色
另外再附一段背景顏色漸變的代碼
運行示意圖如下:
importjava.awt.Color;
importjava.awt.GradientPaint;
importjava.awt.Graphics;
importjava.awt.Graphics2D;
importjavax.swing.JPanel;
importjava.awt.BorderLayout;
importjava.awt.EventQueue;
importjavax.swing.JFrame;
importjavax.swing.JPanel;
classShadePanelextendsJPanel{
=-2644424271663261406L;
publicShadePanel(){
super();
setLayout(null);
}
@Override
protectedvoidpaintComponent(Graphicsg1){//重寫繪制組件外觀
Graphics2Dg=(Graphics2D)g1;
super.paintComponent(g);//執行超類方法
intwidth=getWidth();//獲取組件大小
intheight=getHeight();
//創建填充模式對象
GradientPaintpaint=newGradientPaint(0,0,Color.CYAN,0,height,
Color.MAGENTA);
g.setPaint(paint);//設置繪圖對象的填充模式
g.fillRect(0,0,width,height);//繪制矩形填充控制項界面
}
}
{
=4693799019369193520L;
privateJPanelcontentPane;
publicstaticvoidmain(String[]args){
EventQueue.invokeLater(newRunnable(){
publicvoidrun(){
try{
ShadeBackgroundImageframe=newShadeBackgroundImage();
frame.setVisible(true);
}catch(Exceptione){
e.printStackTrace();
}
}
});
}
publicShadeBackgroundImage(){
setTitle("背景為漸變色的主界面");//設置窗體標題
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100,100,450,300);
contentPane=newJPanel();//創建內容面板
contentPane.setLayout(newBorderLayout(0,0));
setContentPane(contentPane);
ShadePanelshadePanel=newShadePanel();//創建漸變背景面板
contentPane.add(shadePanel,BorderLayout.CENTER);//添加面板到窗體內容面板
}
}
⑥ java窗口背景顏色怎麼設定用setBackground()好像不行,請大俠指教!
你好!
首先,你說的Java窗口是指JFrame或者Frame
其次,你說的窗口背景顏色是指直接調用JFrame或者Frame的setBackground(Colorcolor)方法設置後顯示出來的顏色。其實,你的想法是正確的,但是我想提醒你的是,你沒搞明白JFrame的顯示機制。在你直接調用這個方法後,你的確設置了背景顏色,而你看到的卻不是直接的JFrame或者Frame,而是JFrame.getContentPane().而JFrame上的contentPane默認是Color.WHITE的,所以,無論你對JFrame或者Frame怎麼設置背景顏色,你看到的都只是contentPane.
最後,講解決辦法:
辦法A:在完成初始化,調用getContentPane()方法得到一個contentPane容器,然後將其設置為不可見,即setVisible(false)。這樣,你就可以看到JFrame的廬山真面貌啦!
核心代碼this.getContentPane().setVisible(false);//得到contentPane容器,設置為不可見
實例完整代碼如下:
/*
*TestJFrameBGColor.java
*
*Createdon2011-5-8,0:21:20
*/
packagetestjframebgcolor;
importjava.awt.Color;
/**
*
*@author葉科良
*/
.swing.JFrame{
/***/
publicTestJFrameBGColor(){
initComponents();
this.getContentPane().setVisible(false);//得到contentPane容器,設置為不可見
}
/**
*initializetheform.
*WARNING:DoNOTmodifythiscode.Thecontentofthismethodis
*.
*/
@SuppressWarnings("unchecked")
//<editor-folddefaultstate="collapsed"desc="GeneratedCode">
privatevoidinitComponents(){
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
org.jdesktop.application.ResourceMapresourceMap=org.jdesktop.application.Application.getInstance(testjframebgcolor.TestJFrameBGColorApp.class).getContext().getResourceMap(TestJFrameBGColor.class);
setBackground(resourceMap.getColor("Form.background"));//NOI18N
setName("Form");//NOI18N
javax.swing.GroupLayoutlayout=newjavax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0,400,Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0,300,Short.MAX_VALUE)
);
pack();
}//</editor-fold>
/**
*@
*/
publicstaticvoidmain(Stringargs[]){
java.awt.EventQueue.invokeLater(newRunnable(){
publicvoidrun(){
newTestJFrameBGColor().setVisible(true);
}
});
}
//Variablesdeclaration-donotmodify
//Endofvariablesdeclaration
}
方法B:將contentPane的顏色設置為你想要的顏色,而不是對JFrame本身設置,
核心代碼:this.getContentPane().setBackground(Color.red);//設置contentPane為紅色
將核心代碼替換方法A核心代碼即可實現
方法C:為JFrame添加一個Panel或者JLabel等其他組件,設置其顏色為你想要的顏色,然後將其覆蓋JFrame窗口即可