标签:图片 [] round size image new t stat alt java.awt
import javax.swing.*;
public class MyFrame {
JFrame f;
JPanel p;
JLabel l;
JButton b1;
JButton b2;
JTextField t;
public MyFrame() {
f=new JFrame();
p=new JPanel();
b1=new JButton("生存");
l=new JLabel("与");
b2=new JButton("毁灭");
t=new JTextField("这不是真的!");
f.setSize(600,500);
f.add(p);
p.add(b1);
p.add(l);
p.add(b2);
p.add(t);
f.setVisible(true);
}
public static void main(String[] args) {
new MyFrame();
}
}
import java.awt.*;
import javax.swing.*;
public class MyFrame {
Frame f;
Panel p;
Label l;
Button b1;
Button b2;
TextField t;
public MyFrame() {
f=new Frame();
p=new Panel();
b1=new Button("生存");
l=new Label("与");
b2=new Button("毁灭");
t=new TextField("这不是真的!");
f.setSize(600,500);
f.setBackground(Color.yellow);
b1.setBackground(Color.blue);
b2.setBackground(Color.blue);
t.setBackground(Color.RED);
f.add(p);
p.add(b1);
p.add(l);
p.add(b2);
p.add(t);
f.setVisible(true);
}
public static void main(String[] args) {
new MyFrame();
}
}
标签:图片 [] round size image new t stat alt java.awt
原文地址:https://www.cnblogs.com/pxy0821/p/10837815.html