调用内部类jframe时,外部类jframe不会隐藏

时间:2013-10-23 08:22:15

标签: java swing jframe multiple-instances null-layout-manager

当我调用内部jframe时,它被调用,但是外部jframe没有隐藏。相反,它会重叠。那么这将是什么解决方案。 有没有办法摆脱这个。正如我在调用内部类框架时所尝试的那样,外部类框架也被调用,并且它不会被隐藏。

package com.exp.example;

import java.awt.Color;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;


@SuppressWarnings("serial")
public class A extends JFrame implements ActionListener {
    JFrame rframe = new JFrame();
    JLabel CFirstName;
    JTextField Cfname;
    JButton jbsubmit;
    Container cp;

    public A() {

        rframe.setSize(500, 200);
        rframe.setLocationRelativeTo(null);
        cp = getContentPane();
        cp.setLayout(null);
        setSize(550, 300);
        rframe.setTitle("Outer Frame");
        cp.setBackground(new Color(140, 180, 180));

        CFirstName = new JLabel("First Name");
        Cfname = new JTextField(10);
        jbsubmit = new JButton("PREVIEW");

        CFirstName.setBounds(10, 20, 100, 35);
        Cfname.setBounds(150, 20, 150, 25);
        jbsubmit.setBounds(190, 110, 92, 25);
        cp.add(CFirstName);
        cp.add(Cfname);
        cp.add(jbsubmit);

        jbsubmit.addActionListener(this);

        rframe.add(cp);
        rframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        rframe.setVisible(true);
    }

    public void actionPerformed(ActionEvent ae) {
        String action = ae.getActionCommand();


        if (action == "PREVIEW") {
            /* Write the code here
             * When we click on preview button the frame of outer class(class A) gets
             * deactivated(closed) and inner frame, frame of inner class(class B) gets visible.
             * it should not be overlapped.  
             */
            /* My Code */
            new B();
            rframe.setVisible(false);

        }
    }

    public class B {
        JFrame frm = new JFrame();
        Container cp;

        public B() {
            frm.setSize(500, 200);
            frm.setLocationRelativeTo(null);
            cp = getContentPane();
            cp.setLayout(null);
            setSize(550, 300);
            frm.setTitle("Inner Frame");
            cp.setBackground(new Color(140, 180, 180));

            JLabel cpn = new JLabel("hello");
            cpn.setBounds(10, 20, 100, 35);
            cp.add(cpn);

            frm.add(cp);
            frm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frm.setVisible(true);
        }
    }

    public static void main(String[] args) {
        new A();
    }
}

3 个答案:

答案 0 :(得分:1)

首先,好的SSCCE,很多人都不发帖。

其次,我认为你的标签是重叠的,试试:

if(action.equals("PREVIEW"))
    {
    CFirstName.setText("");
    new B();
    rframe.setVisible(false);

    }

祝你好运!

答案 1 :(得分:0)

1,A延伸JFrame。但内部课程B不会延伸JFrame

2,在AB的构造函数中,您调用getContentPane()来获取ContentPane对象。由于B未扩展JFrame,因此它是A的内部类。实际上,AB使用相同的ContentPane对象来显示内容。

3,在A的构造函数中,您已经添加了一些组件。然后在B的构造函数中,将JLabel添加到同一个ContentPane对象中。因此将展示所有这些组件。这不是因为A中的框架没有隐藏。这是因为再次显示相同的ContentPane对象。

解决方案:您可以B扩展JFrame

A的构造函数中,第26行:

rframe.setSize(500, 200);
rframe.setLocationRelativeTo(null);
cp = getContentPane();
cp.setLayout(null);
setSize(550, 300);

B的构造函数中,第74行:

frm.setSize(500, 200);
frm.setLocationRelativeTo(null);
cp = getContentPane();
cp.setLayout(null);
setSize(550, 300);

P.S。在您的代码中,您将始终创建一个新的JFrame对象并使用它。 AB无法延伸JFrame。如果您进行以下更改,可能会更好。

1,在课程A中,不要创建新的JFrame对象,只需使用A,因为它也是JFrame

2,在课程B中,使用cp = frm.getContentPane();从您实际使用的ContentPane中获取JFrame

答案 2 :(得分:0)

你在容器中有错误。 在A类中,您有Container cp,也有B类。 但是你的程序总是引用A类的Container cp。 所以在为B类创建对象( new B())之前,必须删除Container cp的所有组件。然后你就不会重叠了。

public void actionPerformed(ActionEvent ae) {
    String action = ae.getActionCommand();


    if (action == "PREVIEW") {
        /* Write the code here
         * When we click on preview button the frame of outer class(class A) gets
         * deactivated(closed) and inner frame, frame of inner class(class B) gets visible.
         * it should not be overlapped.  
         */
        /* My Code */
        cp.removeAll();
        rframe.setVisible(false);
        new B();


    }
}