//聊天窗口
//面向对象思想,面板,窗口的基础之上再加窗口
import java.awt.*;
import javax.swing.*;
public class test14 extends JFrame {
JTextArea wby;
JPanel mb;
JComboBox xlk;
JButton an;
JTextField wbk;
JScrollPane gd;
public static void main(String[] args){
test14 lx1=new test14();//主函数调用即可
}
//定义一个构造器
public test14(){
wby=new JTextArea();
mb=new JPanel();
String[] lt={"悟空","八戒","沙僧","小白龙"};
xlk=new JComboBox(lt);
wbk=new JTextField(10);
an=new JButton("发送");
gd=new JScrollPane(wby);
mb.add(xlk);
mb.add(wbk);
mb.add(an);
this.add(gd);
this.add(mb,BorderLayout.SOUTH);
//设置标题
this.setTitle("歌谣");
//设置初始位置
this.setLocation(100,100);
//设置大小
this.setSize(300,200);
this.setIconImage(new ImageIcon("image.jpeg").getImage());
//释放窗口关闭的资源,这个要写对
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//显示界面
this.setVisible(true);
//1继承jframe类
//2在最上方定义组件
//3在构造方法中创建组件
//4在构造方法添加组件
//5设置窗体属性
//6显示窗体
//7在主函数创建对象
}
}
运行结果