欢迎来到天天文库
浏览记录
ID:37920880
大小:566.50 KB
页数:4页
时间:2019-06-02
《GUI图形界面设计》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、实验五:GUI图形界面设计1.实验目的掌握Awt与Swing的区别与联系;掌握Swing常用图像组件的使用;掌握主要的布局管理器的使用方法;了解事件处理机制;掌握Swing常用图像组件的使用;掌握固定菜单和弹出式菜单的创建和使用;2.实验内容3. 实验结果1)编写一个程序,它包括一个文本框和三个按钮,单击每个按钮时,在文本框中显示不同的文字。packagebutton;importjavax.swing.JPanel;importjavax.swing.JFrame;importjavax.swing.JButton;importjavax.swing.JTextFie
2、ld;importjava.awt.FlowLayout;importjava.awt.event.ActionEvent;importjava.awt.event.ActionListener;importjava.awt.event.WindowAdapter;importjava.awt.event.WindowEvent;publicclassTestextendsJFrameimplementsActionListener{ privatestaticfinallongserialVersionUID=1L; privateJPaneljPanel; priv
3、ateJButtonjButton1,jButton2,jButton3; privateJTextFieldtf1; publicTest(Stringtitle) { super(title); init(); } privatevoidinit() { jPanel=newJPanel(); jPanel.setLayout(newFlowLayout()); tf1=newJTextField(20); jButton1=newJButton("按钮1"); jButton2=newJButton("按钮2"); jButton3=newJButton
4、("按钮3"); jButton1.addActionListener(this); jButton2.addActionListener(this); jButton3.addActionListener(this); jPanel.add(tf1); jPanel.add(jButton1); jPanel.add(jButton2); jPanel.add(jButton3); this.add(jPanel); this.setSize(300,100); this.setResizable(false); this.setVisible(true)
5、; this.addWindowListener(newWindowAdapter() { publicvoidwindowClosing(finalWindowEvente) { System.exit(0); } }); } publicvoidactionPerformed(ActionEvente) { if(e.getSource().equals(jButton1)) { tf1.setText("我爱我家"); } if(e.getSource().equals(jButton2)) { tf1.se
6、tText("我爱合师"); } if(e.getSource().equals(jButton3)) { tf1.setText("我爱JAVA"); } } publicstaticvoidmain(String[]args) { newTest("按钮显示不同文字"); }}2)设计一个窗体,上面有一个安宁。当鼠标移到按钮上时,立即隐藏该按钮,当鼠标离开该按钮时,显示该按钮。packageorg.awt;importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicc
7、lassTestEvent{ staticJButtonbt=newJButton("隐藏按钮"); publicstaticvoidmain(String[]args){ Framef=newFrame(); f.setLocation(300,200); f.setSize(200,200); f.setLayout(null);//取消布局管理器; bt.addMouseListener(newMouseMove());//注册鼠标事件监听器; bt.setBackground(Color.cyan); bt.setB
此文档下载收益归作者所有