- 1、本文档共248页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 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
您可能关注的文档
最近下载
- 市委党校物业管理服务总体方案.doc VIP
- 国有企业合规管理办法.pdf VIP
- 2024《盒马鲜生冷供应链物流成本现状、问题及完善对策研究》11000字.docx
- 机器视觉软件:Basler二次开发_(3).Basler相机驱动与SDK安装.docx
- 高中语文(统编版)必修上册+下册单元任务与人文主题 复习梳理.docx
- 2019年重庆市高职分类招生考试(中职类)药剂类真题.pdf VIP
- 2023年江苏省南京市玄武区中考物理二模试卷.docx VIP
- 发酵罐安全检修及维护操作规程.pdf VIP
- 部编版语文五年级上册第6课《将相和》学习任务群教学课件.pptx VIP
- 4x8-四层临街自住楼房住宅设计方案图纸户型图平面图布局图效果图建筑结构水电全套施工图纸.pdf VIP
文档评论(0)