package day01;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;
public class day5 extends JFrame{
public static void main(String[] args) {
JFrame n=new JFrame("创建下拉框");
n.setLayout(new FlowLayout());
n.setSize(3000,1000);
Button b=new Button("kkkkkkkk");
Button c=new Button("llllllllllllllll");
Button d=new Button("这是一个按钮");
b.setBounds(300,45,33,222);
Label label=new Label("这是一个对话框");
Checkbox checkBox=new Checkbox("中国");
Checkbox checkBox1=new Checkbox("中国");
Checkbox checkBox2=new Checkbox("中国");
n.setVisible(true);
b.setVisible(true);
b.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
b.setSize(230,89);
TextField tf=new TextField("hello",30);
n.add(tf);
}
});
n.add(b);
n.add(c);
n.add(d);
n.add(checkBox);
n.add(checkBox2);
n.add(checkBox1);
}
}
图像用户界面基本操作
最新推荐文章于 2022-04-24 00:00:38 发布