應用java swing完成qq登錄界面示例分享。本站提示廣大學習愛好者:(應用java swing完成qq登錄界面示例分享)文章只能為提供參考,不一定能成為您想要的結果。以下是應用java swing完成qq登錄界面示例分享正文
用Java Swing做的一個QQ登錄界面
import java.awt.Container;
import java.awt.Image;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPasswordField;
import javax.swing.JTextField;
/**
* 仿QQ登錄界面
*
* @author jiang
*/
public class GUIQQ extends JFrame {
// 用戶名
private JTextField username;
// 暗碼
private JPasswordField password;
// 小容器
private JLabel jl1;
private JLabel jl2;
private JLabel jl3;
private JLabel jl4;
// 小按鈕
private JButton bu1;
private JButton bu2;
private JButton bu3;
// 復選框
private JCheckBox jc1;
private JCheckBox jc2;
// 列表框
private JComboBox jcb;
/*
* 結構辦法
*/
public GUIQQ() {
// 設置窗口題目
this.setTitle("QQ2012正式版");
// 窗體組件初始化
init();
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// 設置結構方法為相對定位
this.setLayout(null);
this.setBounds(0, 0, 355, 265);
// 設置窗體的題目圖標
Image image = new ImageIcon("e:/a.gif").getImage();
this.setIconImage(image);
// 窗體年夜小不克不及轉變
this.setResizable(false);
// 居中顯示
this.setLocationRelativeTo(null);
// 窗體可見
this.setVisible(true);
}
/*
* 初始化辦法
*/
public void init() {
// 創立一個容器
Container con = this.getContentPane();
jl1 = new JLabel();
// 設置配景圖片
Image image1 = new ImageIcon("e:/background.jpg").getImage();
jl1.setIcon(new ImageIcon(image1));
jl1.setBounds(0, 0, 355, 265);
// QQ登錄頭像設定
jl2 = new JLabel();
Image image2 = new ImageIcon("e:/a.gif").getImage();
jl2.setIcon(new ImageIcon(image2));
jl2.setBounds(40, 95, 50, 60);
// 用戶號碼登錄輸出框
username = new JTextField();
username.setBounds(100, 100, 150, 20);
// 用戶號碼登錄輸出框旁邊的文字
jl3 = new JLabel("注冊賬號");
jl3.setBounds(260, 100, 70, 20);
// 暗碼輸出框
password = new JPasswordField();
password.setBounds(100, 130, 150, 20);
// 暗碼輸出框旁邊的文字
jl4 = new JLabel("找回暗碼");
jl4.setBounds(260, 130, 70, 20);
// 輸出框下方文字
jc1 = new JCheckBox("記住暗碼");
jc1.setBounds(105, 155, 80, 15);
jc2 = new JCheckBox("主動登錄");
jc2.setBounds(185, 155, 80, 15);
// 用戶登錄狀況選擇
jcb = new JComboBox();
jcb.addItem("在線");
jcb.addItem("隱身");
jcb.addItem("分開");
jcb.setBounds(40, 150, 55, 20);
// 按鈕設定
bu1 = new JButton("登錄");
bu1.setBounds(280, 200, 65, 20);
// 給按鈕添加1個事宜
bu1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
String str=e.getActionCommand();
if("登錄".equals(str)){
String getName =username.getText();
// String getPwd =password.getText();
JOptionPane.showConfirmDialog(null, "您輸出的用戶名是"+getName);
}
}
});
bu2 = new JButton("多賬號");
bu2.setBounds(5, 200, 75, 20);
bu3 = new JButton("設置");
bu3.setBounds(100, 200, 65, 20);
// 一切組件用容器裝載
jl1.add(jl2);
jl1.add(jl3);
jl1.add(jl4);
jl1.add(jc1);
jl1.add(jc2);
jl1.add(jcb);
jl1.add(bu1);
jl1.add(bu2);
jl1.add(bu3);
con.add(jl1);
con.add(username);
con.add(password);
}
public static void main(String[] args) {
// 實例化對象
GUIQQ qq = new GUIQQ();
}
}