java 窗体 源码_Java制作MDI窗体源代码

d7f4ae76d503f0f432ee1ace634e09aa.png

由于实际需要做一个MDI窗体,百度里面找到一个不错的源代码给大家分享一下。

import javax.swing.*;

import java.awt.event.*;

import java.awt.*;

class JInternalFrame1 extends JFrame implements ActionListener{

JDesktopPane desktopPane;

int count = 1;

public JInternalFrame1() {

super("JInternalFrame1");

Container contentPane = this.getContentPane();

contentPane.setLayout(new BorderLayout());

JButton b = new JButton("Create New Internal Frames");

b.addActionListener(this);//当用户按下按钮时,将运行actionPerformed()中的程序

contentPane.add(b, BorderLayout.SOUTH);

/*建立一个新的JDesktopPane并加入于contentPane中

*/

desktopPane = new JDesktopPane();

contentPane.add(desktopPane);

setSize(350, 350);

show();

addWindowListener(new WindowAdapter() {

public void windowClosing(WindowEvent e) {

System.exit(0);

}

});

}

/*产生一个可关闭、可改变大小、具有标题、可化与最小化的Internal Frame.

*/

public void actionPerformed(ActionEvent e)

{

JInternalFrame internalFrame = new JInternalFrame(

"Internal Frame "+(count++), true, true, true, true);

internalFrame.setLocation( 20,20);

internalFrame.setSize(200,200);

internalFrame.setVisible(true);

//取得JInternalFrame的Content Pane,用以加入新的组件。

Container icontentPane = internalFrame.getContentPane();

JTextArea textArea = new JTextArea();

JButton b = new JButton("Internal Frame Button");

/*将JTextArea与JButton对象加入JInternalFrame中。由此呆知,JInteranlFrame加入组件

*的方式与JFrame是一模一样。

*/

icontentPane.add(textArea,"Center");

icontentPane.add(b,"South");

//将JInternalFrame加入JDesktopPane中,如此一来,即使产生很多JInternalFrame,JDesktopPane也

//能将它们之间的关系管理得相当良好。

desktopPane.add(internalFrame);

try {

internalFrame.setSelected(true);

} catch (java.beans.PropertyVetoException ex) {

System.out.println("Exception while selecting");

}

}

public static void main(String[] args) {

new JInternalFrame1();

}

}

2829f2ca24f0d0090cbba57f30759f23.png

Java制作MDI窗体源代码.doc

下载Word文档到电脑,方便收藏和打印[全文共1290字]

编辑推荐:

8b95f2eb3d3f7ce4dc3bf1178c74941e.png

8b95f2eb3d3f7ce4dc3bf1178c74941e.png

8b95f2eb3d3f7ce4dc3bf1178c74941e.png

8b95f2eb3d3f7ce4dc3bf1178c74941e.png

8b95f2eb3d3f7ce4dc3bf1178c74941e.png

下载Word文档

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值