Ⅰ java 點擊按紐改變背景顏色
importjava.awt.*;
importjava.awt.event.*;
importjavax.swing.*;
//本類繼承JFrame,實現了ActionListener介面
{
intr=90;
intg=15;
intb=195;
publicMyFrame(){
//組件的初始化
JButtonjbRed=newJButton("red");
jbRed.setLocation(20,80);//按鈕位置
jbRed.setSize(80,40);//按鈕大小
jbRed.addActionListener(this);//添加點擊按鈕後的事件響應,因為本類實現了ActionListener介面,所以可以傳入參數this
JButtonjbGreen=newJButton("green");
jbGreen.setLocation(120,80);
jbGreen.setSize(80,40);
jbGreen.addActionListener(this);
JButtonjbBlue=newJButton("blue");
jbBlue.setLocation(220,80);
jbBlue.setSize(80,40);
jbBlue.addActionListener(this);
//添加組件到窗口
add(jbRed);
add(jbGreen);
add(jbBlue);
//窗口的設置
setLayout(null);//因為每一個按鈕都設置了位置和大小,那麼應該把窗口設置為空布局,那麼位置和大小才能有效
setTitle("窗口標題");
getContentPane().setBackground(newColor(r,g,b));//設置窗口的面板背景色
setLocation(220,160);//窗口位置
setSize(320,240);//窗口大小
//setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//點擊關閉按鈕時,結束程序
//下面也可以實現,點擊關閉按鈕時,結束程序
addWindowListener(newWindowAdapter(){
@Override
publicvoidwindowClosing(WindowEvente){//點擊關閉按鈕會觸發這個事件,調用這個方法
System.out.println("通過WindowListener實現關閉");
System.exit(0);//退出
}
});
}
publicvoidactionPerformed(ActionEvente){
Stringcmd=e.getActionCommand();
//通過ActionCommand來判斷是哪一個按鈕被點擊了
if("red".equals(cmd)){//如果是紅色按鈕被點擊了,那麼紅色+10
r+=10;
if(r>255){//如果red大於255,可以設置為0,也可以設置為255,一直鎖定為255也可設置為初始的90,這里題目這里沒有要求
r=90;
}
}elseif("green".equals(cmd)){
g+=10;
if(g>255){
g=15;
}
}elseif("blue".equals(cmd)){
b+=10;
if(b>255){
b=195;
}
}
this.getContentPane().setBackground(newColor(r,g,b));
//System.out.println(this.getContentPane().getBackground());
}
publicstaticvoidmain(String[]args){
EventQueue.invokeLater(newRunnable(){
publicvoidrun(){
newMyFrame().setVisible(true);//啟動窗口並設置可見
}
});
}
}
Ⅱ java改變按鈕顏色
為yellow、blue、red3個按鈕添加actionlistener,當按鈕點擊時執行setBackground(backgroundColor),同時執行 按鈕.setBackground(backgroundColor)即可,比如:
JButton btnYellow = null;
JButton btnBlue = null;
JButton btnRed = null;
btnYellow.setActionCommand("yellow");
btnBlue.setActionCommand("blue");
btnRed.setActionCommand("red");
public void actionPerformed(ActionEvent e) {
String command = event.getActionCommand();
if( "yellow".equals(command) ){
setBackground(Color.yellow);
btnYellow.setBackground(Color.yellow);
}else if( "blue".equals(command) ){
setBackground(Color.blue);
btnBlue.setBackground(Color.blue);
}else if( "red".equals(command) ){
setBackground(Color.red);
btnRed.setBackground(Color.red);
}
}
寫出了部分代碼
Ⅲ java怎麼做點擊一個按鈕彈出一個顏色選擇窗格改變文本區文字顏色
1、示例代碼
public class ColorFrame extends JFrame {
private Container container; //容器
private JPanel colorPanel; //用於反映顏色變化的面板
public ColorFrame() { //構造函數
super( "調色板演示" ); //調用JFrame的構造函數
container = getContentPane(); //得到容器
colorPanel=new JPanel(); //初始化面板
JButton selectColorButton = new JButton( "選取顏色" ); //初始化顏色選擇按鈕
selectColorButton.addActionListener( //為顏色選擇按鈕增加事件處理
new ActionListener() {
public void actionPerformed( ActionEvent event )
{
JColorChooser chooser=new JColorChooser(); //實例化顏色選擇器
Color color=chooser.showDialog(ColorFrame.this,"選取顏色",Color.lightGray ); //得到選擇的顏色
if (color==null) //如果未選取
color=Color.gray; //則設置顏色為灰色
colorPanel.setBackground(color); //改變面板的背景色
}
});
container.add(selectColorButton,BorderLayout.NORTH); //增加組件
container.add(colorPanel,BorderLayout.CENTER); //增加組件
setSize( 400, 130 ); //設置窗口尺寸
setVisible(true); //設置窗口可見
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE ); //關閉窗口時退出程序
}
public static void main(String args[]) {
new ColorFrame();
}
}
2、效果
Ⅳ 如何改變java按鈕中的顏色
setForeground() 設置前景/字體顏色
setBackground() 設置背景顏色
具體實現:(假設按鈕名稱為:button)
設置紅字:
button.setForeground(Color.red);
設置黑色背影:
button.setBackground(Color.black);