JAVA中点击按钮事件弹出子窗口:JInternalFrame的使用

来源:互联网 发布:keil优化等级设置 编辑:程序博客网 时间:2024/05/19 17:09

要求:

1、在父窗口中添加一个按钮

2、点击按钮弹出子窗口

注意:这是JDK1.7版本

在JDK1.7之前,JFrame是不能直接添加子窗口的,要先将JInternalFrame添加到JDesktopPane 中,

再将JDesktopPane 添加到父窗口内,完成这个操作。

(一)建立父类JFrame

package com.java.view;import java.awt.BorderLayout;import java.awt.EventQueue;import javax.swing.JFrame;import javax.swing.JPanel;import javax.swing.border.EmptyBorder;import javax.swing.JDesktopPane;import javax.swing.JButton;import java.awt.event.ActionListener;import java.awt.event.ActionEvent;import javax.swing.JMenuBar;public class Testfrm extends JFrame {/** * Launch the application. */public static void main(String[] args) {EventQueue.invokeLater(new Runnable() {public void run() {try {Testfrm frame = new Testfrm();frame.setVisible(true);} catch (Exception e) {e.printStackTrace();}}});}/** * Create the frame. */public Testfrm() {setTitle("\u7236\u7A97\u53E3");//标题setBounds(400, 300, 800, 600);//父窗口的坐标和大小getContentPane().setLayout(null);//自由布局JButton bt = new JButton("\u6309\u94AE");//按钮的变量名为btbt.setBounds(0, 0, 93, 23);//按钮的位置坐标和大小getContentPane().add(bt);//按钮添加到窗口中bt.addActionListener(new ActionListener() {public void actionPerformed(ActionEvent e) {Testinterfrm testinterfrm=new Testinterfrm();//新建子窗口对象testinterfrm.setVisible(true);//子窗口可见getContentPane().add(testinterfrm);//子窗口添加到父窗口中}});}}
(二)建立子类JInternalFrame
package com.java.view;import java.awt.BorderLayout;import java.awt.EventQueue;import javax.swing.JFrame;import javax.swing.JPanel;import javax.swing.border.EmptyBorder;import javax.swing.JDesktopPane;import javax.swing.JButton;import java.awt.event.ActionListener;import java.awt.event.ActionEvent;import javax.swing.JMenuBar;public class Testfrm extends JFrame {/** * Launch the application. */public static void main(String[] args) {EventQueue.invokeLater(new Runnable() {public void run() {try {Testfrm frame = new Testfrm();frame.setVisible(true);} catch (Exception e) {e.printStackTrace();}}});}/** * Create the frame. */public Testfrm() {setTitle("\u7236\u7A97\u53E3");//标题setBounds(400, 300, 800, 600);//父窗口的坐标和大小getContentPane().setLayout(null);//自由布局JButton bt = new JButton("\u6309\u94AE");//按钮的变量名为btbt.setBounds(0, 0, 93, 23);//按钮的位置坐标和大小getContentPane().add(bt);//按钮添加到窗口中bt.addActionListener(new ActionListener() {public void actionPerformed(ActionEvent e) {Testinterfrm testinterfrm=new Testinterfrm();//新建子窗口对象testinterfrm.setVisible(true);//子窗口可见getContentPane().add(testinterfrm);//子窗口添加到父窗口中}});}}
运行结果:




0 0