第8章 常用Swing组件精要.ppt

第8章 常用Swing组件精要

JDialog dialog=new JDialog(MainFrame,” 读者登录”,true); Container container = dialog.getContentPane(); container.setLayout(new GridLayout(2,3)); JLabel readerIDLabel = new JLabel(账号, JLabel.RIGHT); container.add(readerIDLabel); JTextField readerFieldText = new JTextField(10); container.add(readerFieldText); container.add(new Jlabel()); container.add(new JLabel(密码, JLabel.RIGHT)); JPasswordField pswdText = new JPasswordField(10); container.add(pswdText); JButton okButton = new JButton(确定); okButton.addActionListener(new LoginActionListener());//为命令按钮注册时间 container.add(okButton); dialog.setSize(270

您可能关注的文档

文档评论(0)

1亿VIP精品文档

相关文档