编写一个图形界面的Java Application,为用户提供三种关闭窗口的方法
1。使用按钮2。使用菜单栏3。使用窗口关闭图表急!!!!!!!!!!!!!!!!!!!!!!!!!...
1。使用按钮
2。使用菜单栏
3。使用窗口关闭图表
急!!!!!!!!!!!!!!!!!!!!!!!!! 展开
2。使用菜单栏
3。使用窗口关闭图表
急!!!!!!!!!!!!!!!!!!!!!!!!! 展开
1个回答
2013-07-19
展开全部
******************************************************************
新建类CloseFrame.java,代码如下:
******************************************************************
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JPanel;
public class CloseFrame extends JFrame implements ActionListener {
JMenuBar menu;
JMenu file;
JMenuItem closeMenu;
public CloseFrame() {
menu = new JMenuBar();
file = new JMenu("文件御埋");
closeMenu = new JMenuItem("关闭"拿拆没);
closeMenu.addActionListener(this);
JButton closeButton = new JButton(" 关闭 ");
closeButton.addActionListener(this);
JPanel closePanel = new JPanel();
closePanel.setLayout(new FlowLayout());
closePanel.add(closeButton);
this.add(closePanel, BorderLayout.CENTER);
this.add(menu, BorderLayout.NORTH);
menu.add(file);
file.add(closeMenu);
this.setBounds(200, 100, 200, 120);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void actionPerformed(ActionEvent e) {
System.exit(0);
}
public static void main(String[] args) {
new CloseFrame();
}
}
******************************************************************
运行结果消纳如下:
******************************************************************
新建类CloseFrame.java,代码如下:
******************************************************************
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JPanel;
public class CloseFrame extends JFrame implements ActionListener {
JMenuBar menu;
JMenu file;
JMenuItem closeMenu;
public CloseFrame() {
menu = new JMenuBar();
file = new JMenu("文件御埋");
closeMenu = new JMenuItem("关闭"拿拆没);
closeMenu.addActionListener(this);
JButton closeButton = new JButton(" 关闭 ");
closeButton.addActionListener(this);
JPanel closePanel = new JPanel();
closePanel.setLayout(new FlowLayout());
closePanel.add(closeButton);
this.add(closePanel, BorderLayout.CENTER);
this.add(menu, BorderLayout.NORTH);
menu.add(file);
file.add(closeMenu);
this.setBounds(200, 100, 200, 120);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public void actionPerformed(ActionEvent e) {
System.exit(0);
}
public static void main(String[] args) {
new CloseFrame();
}
}
******************************************************************
运行结果消纳如下:
******************************************************************
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询