Java:在主窗体中调用另一窗体,我要实现那个窗体显示在主窗体里面,请

Java:在主窗体中调用另一窗体,我要实现那个窗体显示在主窗体里面,请问怎么实现?... Java:在主窗体中调用另一窗体,我要实现那个窗体显示在主窗体里面,请问怎么实现? 展开
 我来答
匿名用户
2016-09-02
展开全部
public 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();

    }

}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式