网站大量收购独家精品文档,联系QQ:2885784924

第五章GUI程序设计与常用组件.ppt

  1. 1、本文档共248页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第五章GUI程序设计与常用组件资料

实例:一个GUI程序 public login( ) { createUserInterface(); // 调用创建用户界面方 } private void createUserInterface() {//创建框架 Container contentPane = getContentPane(); contentPane.setLayout( null ); userJPanel = new JPanel(); userJPanel.setBounds( 35, 120, 300, 96 ); userJPanel.setBorder(BorderFactory.createEtchedBorder() ); userJPanel.setLayout( null ); contentPane.add( userJPanel ); // 建立输入注册名组合框 nameJComboBox = new JComboBox(); nameJComboBox.setBounds( 100, 12, 170, 25 ); nameJComboBox.addItem( admin ); nameJComboBox.addItem( aloie ); nameJComboBox.setSelectedIndex( 0 ); nameJComboBox.setEditable(true); userJPanel.add( nameJComboBox ); //GUI界面显示图片 pictureJLabel=new JLabel(); pictureJLabel.setBounds(5,0,380,118); pictureJLabel.setIcon(new ImageIcon(pic.gif)); contentPane.add(pictureJLabel); //注册名前的标签 nameJLabel=new JLabel(姓 名:); nameJLabel.setBounds(20,12,80,25); userJPanel.add(nameJLabel); //密码输入框 passwordJPasswordField=new JPasswordField(); passwordJPasswordField.setBounds(100,60,170,25); userJPanel.add(passwordJPasswordField); passwordJLabel=new JLabel(密 码:); passwordJLabel.setBounds(20,60,80,25); userJPanel.add(passwordJLabel); note=new JLabel(密码与用户名相同); note.setBounds(0,295,180,25); userJPanel.add(note); 实例:一个GUI程序 //登录按钮设置 okJButton=new JButton(登 陆); okJButton.setBounds(60,250,80,25); contentPane.add(okJButton); okJButton.addActionListener( new ActionListener() { public void actionPerformed(ActionEvent event) { okJButtonActionPerformed(event); } } ); //取消按钮设置 cancelJButton=new JButton(取 消); cancelJButton.setBounds(210

文档评论(0)

wyjy + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档