import java.awt.*;
import javax.swing.*;
public class text2 {
public static void main(String[] args) {
SwingUtilities.invokeLater(text2::from);
}
private static void from(){
JFrame f=new JFrame("窗口");
f.setLayout(null);
f.setLayout (new FlowLayout(FlowLayout.CENTER,200,8));
f.setSize(500, 400);
f.setLocation(400, 200);
f.setVisible(true);
JLabel l3=new JLabel("登录界面");
l3.setLocation(500, 10);
l3.setSize(60, 20);
JLabel l1=new JLabel(" 账号: ");
JLabel l2=new JLabel(" 密码: ");
l1.setLocation(10, 50);
l1.setSize(60, 20);
l2.setLocation(10, 100);
l2.setSize(60, 20);
JTextField t1=new JTextField(10);
JPasswordField t2=new JPasswordField(10);
JButton b1=new JButton("登陆");
ButtonGroup b=new ButtonGroup();
JRadioButton r1= new JRadioButton("记住密码");
JRadioButton r2= new JRadioButton("自动登陆" );
f.add(l3);
f.add(l1);
f.add(t1);
f.add(l2);
f.add(t2);
f.add(r1);
f.add(r2);
f.add(b1);
b.add(r1);
b.add(r2);
}
}