分析題目:
成都創(chuàng)新互聯(lián)公司云計(jì)算的互聯(lián)網(wǎng)服務(wù)提供商,擁有超過(guò)13年的服務(wù)器租用、遂寧服務(wù)器托管、云服務(wù)器、網(wǎng)站空間、網(wǎng)站系統(tǒng)開發(fā)經(jīng)驗(yàn),已先后獲得國(guó)家工業(yè)和信息化部頒發(fā)的互聯(lián)網(wǎng)數(shù)據(jù)中心業(yè)務(wù)許可證。專業(yè)提供云主機(jī)、網(wǎng)站空間、申請(qǐng)域名、VPS主機(jī)、云服務(wù)器、香港云服務(wù)器、免備案服務(wù)器等。
一 分析布局: 題目明確的指出了按鈕的位置和大小 ,那么說(shuō)明需要使用的布局是空布局(絕對(duì)布局) , 而JFrame窗口的內(nèi)容面板默認(rèn)布局是邊界布局(BorderLayout),所以需要設(shè)置一下
setLayout(null);//設(shè)置為絕對(duì)布局
二了解顏色. Color 可以通過(guò)紅,綠,藍(lán) 三原色, 不同的搭配, 形成不同的顏色.
每個(gè)原色的取值范圍是0~255, 比如紅色的rgb值就是r=255,g=0,b=0
胡蘿卜色 r=237,g=145,b=33
三添加顏色 ,java給JFrame添加顏色,比較特殊. 必須添加到內(nèi)容面板上,才能正常顯示(因?yàn)镴Frame分了好多層)
getContentPane().setBackground(new?Color(r,g,b));//設(shè)置窗口的面板背景色
四 事件處理分析: 點(diǎn)擊按鈕,會(huì)觸發(fā)ActionEvent 事件,這個(gè)事件會(huì)被ActionListener 接收器接收到, 只需要重寫ActionListener 里的actionPerformed 方法, 即可實(shí)現(xiàn)點(diǎn)擊按鈕后,做某件事
五 具體參考代碼
import?java.awt.*;
import?java.awt.event.*;
import?javax.swing.*;
//?本類繼承JFrame,實(shí)現(xiàn)了ActionListener接口
public?class?MyFrame?extends?JFrame?implements?ActionListener{
int?r?=?90;
int?g?=?15;
int?b?=?195;
public?MyFrame()?{
//組件的初始化
JButton?jbRed?=?new?JButton("red");
jbRed.setLocation(20,?80);//按鈕位置
jbRed.setSize(80,?40);//按鈕大小
jbRed.addActionListener(this);//添加點(diǎn)擊按鈕后的事件響應(yīng)?,因?yàn)楸绢悓?shí)現(xiàn)了ActionListener接口,所以可以傳入?yún)?shù)this
JButton?jbGreen?=?new?JButton("green");
jbGreen.setLocation(120,?80);
jbGreen.setSize(80,?40);
jbGreen.addActionListener(this);
JButton?jbBlue?=?new?JButton("blue");
jbBlue.setLocation(220,?80);
jbBlue.setSize(80,?40);
jbBlue.addActionListener(this);
//添加組件到窗口
add(jbRed);
add(jbGreen);
add(jbBlue);
//窗口的設(shè)置
setLayout(null);//因?yàn)槊恳粋€(gè)按鈕都設(shè)置了位置和大小,?那么應(yīng)該把窗口設(shè)置為空布局,?那么位置和大小才能有效
setTitle("窗口標(biāo)題");
getContentPane().setBackground(new?Color(r,g,b));//設(shè)置窗口的面板背景色
setLocation(220,?160);//?窗口位置
setSize(320,?240);//?窗口大小
//setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//點(diǎn)擊關(guān)閉按鈕時(shí),結(jié)束程序
//下面也可以實(shí)現(xiàn),點(diǎn)擊關(guān)閉按鈕時(shí),?結(jié)束程序
addWindowListener(new?WindowAdapter()?{
@Override
public?void?windowClosing(WindowEvent?e)?{//點(diǎn)擊關(guān)閉按鈕會(huì)觸發(fā)這個(gè)事件,調(diào)用這個(gè)方法
System.out.println("通過(guò)WindowListener實(shí)現(xiàn)關(guān)閉");
System.exit(0);//退出
}
});
}
public?void?actionPerformed(ActionEvent?e)?{
String?cmd=e.getActionCommand();
//通過(guò)ActionCommand?來(lái)判斷是哪一個(gè)按鈕被點(diǎn)擊了
if("red".equals(cmd))?{//如果是紅色按鈕被點(diǎn)擊了,那么紅色+10
r+=10;
if(r255)?{//如果red大于255?,可以設(shè)置為0?,也可以設(shè)置為255,一直鎖定為255?也可設(shè)置為初始的90,這里題目這里沒(méi)有要求
r=90;
}
}else?if("green".equals(cmd))?{
g+=10;
if(g255)?{
g=15;
}
}else?if("blue".equals(cmd)){
b+=10;
if(b255)?{
b=195;
}
}
this.getContentPane().setBackground(new?Color(r,g,b));
//System.out.println(this.getContentPane().getBackground());
}
public?static?void?main(String[]?args)?{
EventQueue.invokeLater(new?Runnable()?{
public?void?run()?{
new?MyFrame().setVisible(true);//啟動(dòng)窗口并設(shè)置可見(jiàn)
}
});
}
}
import?java.awt.BorderLayout;
import?java.awt.Color;
import?java.awt.Font;
import?java.awt.event.ActionEvent;
import?java.awt.event.ActionListener;
import?javax.swing.JButton;
import?javax.swing.JFrame;
import?javax.swing.JLabel;
import?javax.swing.JPanel;
class?Frame1?extends?JFrame?//?設(shè)計(jì)一個(gè)窗體類
{
JButton?jb1,?jb2,?jb3;?//?按鈕
JLabel?jl;?//?標(biāo)簽
Frame1()?//?構(gòu)造方法
{
jb1?=?new?JButton("紅色");?//?創(chuàng)建按鈕對(duì)象
jb2?=?new?JButton("綠色");
jb3?=?new?JButton("藍(lán)色");
//?給jb1添加監(jiān)聽事件
jb1.addActionListener(new?ActionListener()?{
//?覆寫actionPerformed方法
@Override
public?void?actionPerformed(ActionEvent?e)?{
jl.setForeground(Color.RED);
}
});
//?給jb2添加監(jiān)聽事件
jb2.addActionListener(new?ActionListener()?{
@Override
public?void?actionPerformed(ActionEvent?e)?{
jl.setForeground(Color.GREEN);
}
});
//?給jb3添加監(jiān)聽事件
jb3.addActionListener(new?ActionListener()?{
@Override
public?void?actionPerformed(ActionEvent?e)?{
jl.setForeground(Color.BLUE);
}
});
jl?=?new?JLabel("設(shè)定標(biāo)簽顏色");?//?創(chuàng)建標(biāo)簽對(duì)象
jl.setFont(new?Font("隸書",?Font.PLAIN,?32));?//?標(biāo)簽字體
JPanel?jp1?=?new?JPanel();?//?面板1
JPanel?jp2?=?new?JPanel();?//?面板2
jp1.add(jl);?//?標(biāo)簽放入面板1
jp2.add(jb1);?//?三個(gè)按鍵放入面板2
jp2.add(jb2);
jp2.add(jb3);
setLayout(new?BorderLayout());?//?窗體設(shè)定為邊界布局
this.add(jp1,?BorderLayout.NORTH);?//?標(biāo)簽面板放在窗體上端
this.add(jp2,?BorderLayout.CENTER);?//?按鈕面板放在窗體中間
setBounds(400,?300,?300,?140);?//?設(shè)定窗體大小和位置
setTitle("【實(shí)驗(yàn)10-1】座號(hào)25,王濤\n");?//?設(shè)定窗體標(biāo)題
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true);?//?設(shè)定窗體可見(jiàn)
}
}
public?class?Experiment10_1?{
public?static?void?main(String[]?args)?{
new?Frame1();
}
}
submit=newJButton("登陸");\x0d\x0a\x0d\x0asubmit.setFont(newFont("宋體",Font.PLAIN,16));\x0d\x0a三個(gè)參數(shù)分別表示:字體,樣式(粗體,斜體等),字號(hào)\x0d\x0a\x0d\x0asubmit.setForeground(Color.RED);\x0d\x0a這個(gè)表示給組件上的文字設(shè)置顏色Color.RED表示紅色\x0d\x0a當(dāng)然你也可以自己給RGB的值比如submit.setForeground(newColor(215,215,200));\x0d\x0a\x0d\x0aJLabel組件支持HTML標(biāo)記代碼\x0d\x0ainfoLab=newJLabel("用戶登陸系統(tǒng)",JLabel.CENTER);\x0d\x0a\x0d\x0a*注意:地址要單引號(hào)引起來(lái)。這個(gè)表示給用戶登錄系統(tǒng)幾個(gè)字增加超鏈接\x0d\x0ainfoLab.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));\x0d\x0a\x0d\x0a這個(gè)表示給這個(gè)文字添加鼠標(biāo)樣式,當(dāng)鼠標(biāo)移動(dòng)到文字上,鼠標(biāo)變成手型
setForeground() 設(shè)置前景/字體顏色
setBackground() 設(shè)置背景顏色
具體實(shí)現(xiàn):(假設(shè)按鈕名稱為:button)
設(shè)置紅字:
button.setForeground(Color.red);
設(shè)置黑色背影:
button.setBackground(Color.black);