51圖像用戶界面
使用方式:藉助菜單、按鈕等標準界面元素和鼠標操做,幫助用戶方便的發送指令,並將運行結果以圖形的方式展示給用戶
經過抽象窗口工具包(AWT)來建立圖形用戶界面(GUI)
AWT包主要提供了三大類:
容器類
Ui組件類
幫助類
Jdk1.2之後引入新包swing,在AWT的基礎上增長了不少功能
java
UI組件
Java的圖形用戶界面最基本的組成部分是組件,且組件不能單獨顯示出來,必須放在單獨的容器中才能夠顯示出來
在componen類中定義了AWT組件具備通常功能如:大小,位置控制,外形控制,組件的狀態控制等
AWT支持的組件:按鈕、標籤、文本框、文本去、複選框、單選按鈕、滾動條、表格、菜單等……框架
容器:具備的功能是組件管理和佈局管理,組件管理中通常包含的方法:add(),remove(),getcomponent
Container類能夠直接或間接的派生兩個經常使用的容器---框架frame類,面板panel類ide
幫助類
Graphics類,佈局管理類(爲容器設置此類時可調用容器類中的setlayout()方法),Color類和Font類工具
容器類組件:分爲頂層容器(能夠獨立的窗口,重要的子類是Frame和Dialog)和非頂層容器(必須位於窗口以內,包括Panle和scrollPane等,Panle的重要子類是Applet類)佈局
開發GUI
第一步:導包
第二步:建立組建的對象
第三步:初始化
建立窗口:方法一:繼承。this
import java.awt.;
import javax.swing.;
public class Java extends JFrame {
public Java() {
this.setTitle("窗口");
this.setSize(500,500);
this.setLocation(400,300);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);設計
}
public class Test {
public static void main(String[] args) {
new Java();
}
}
}
方法二:建立子類
public void test() {
JFrame frame=new JFrame();
frame.setTitle("窗口");
frame.setSize(500,500);
frame.setLocation(400,300);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
lable標籤
label.fontcolor, label.font, label.fontsize,label.foreground,label.sethorizontalAlignment()—對齊方式……
3d
按鈕 button
private JButton button;
button=new JButton("按鈕");
button.setEnabled(false);
code
佈局管理器 layout manager
經常使用佈局:
Flowlayout(流式佈局):
Flowlayout():生成一個默認的流式佈局
Flowlayout(int alignment):能夠設定每一行組件的對齊方式
Flowlayout(int alignment, int horz, int vert): 能夠設定組件間的水平和垂直距離
component
多個按鈕:private JButton btn[]=new JButton[10];
for(int i=0;i<btn.length;++i) {
btn[i]=new JButton("按鈕"+i);
for(int i=0;i<btn.length;++i) {
this.add(btn[i]);
Borderlayout(邊界佈局):
Borderlayout();生成默認的編輯佈局
Borderlayout(int horz, int vert): 能夠設定組件間的水平和垂直距離
setLayout(new BorderLayout());
add(btn[0],BorderLayout.EAST);
add(btn[1],BorderLayout.WEST);
add(btn[2],BorderLayout.NORTH);
add(btn[3],BorderLayout.SOUTH);
add(btn[5],BorderLayout.CENTER);
Gridlayout (網格佈局):
Gridlayout()生成一個單列的網格佈局
Gridlayout(int row,int col)生成一個有行數列數的網格佈局
setLayout(new GridLayout(4,4,5,5));
for(int i=0;i<btn.length;++i) { this.add(btn[i]); }
Card Layout(卡片佈局)
Boxlayout(框佈局〉
GridBagLayout(網格包佈局)
空佈局:給容器添加組件的時候,組件沒有大小,沒有位置;須要自行建立大小,而且定位位置(setBounds()--既能夠設置大小也能夠設置位置)
每一個容器( Container對象)都有一個與它相關的缺省的佈局管理器。
Appt的缺省佈局是 Flowlayout, Frame的缺省佈局是 Borderlayout,Panel的缺省佈局是
Flowlayout。
文本框 TextField
QQ登陸頁面代碼:
import java.awt.;
import javax.swing.;
public class Login extends JFrame{
private JLabel lname;
private JLabel lpass;
private JTextField tname;
private JTextField tpass;
private JButton login;
private void init() { lname=new JLabel("用戶名"); lpass=new JLabel("密 碼"); tname=new JTextField(14); tpass=new JTextField(14); login=new JButton("登陸"); this.setLayout(new FlowLayout(FlowLayout.CENTER)); this.add(lname); this.add(tname); this.add(lpass); this.add(tpass); this.add(login); this.setResizable(false); this.setTitle("QQ登陸"); this.setSize(250,150); this.setLocation(400,300); this.setVisible(true); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } public Login() { init(); }
}
public class Test {
public static void main(String[] args) {
new Login();
}
}