1

当我调用内部 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();
    }
}
4

3 回答 3

1

首先,尼斯SSCCE,很多人不发布。

其次,我认为您的标签重叠,请尝试:

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

    }

祝你好运!

于 2013-10-23T08:27:19.557 回答
0

1、A延伸JFrame。但是内部类B没有扩展JFrame

2,在AB的构造函数中,您调用getContentPane()以获取一个ContentPane对象。由于B不扩展JFrame并且它是A. 所以实际上AB使用相同的ContentPane对象来显示一些东西。

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

解决方案:您可以进行Bextends 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);

PS 在您的代码中,您将始终创建一个新JFrame对象并使用它。没有意义 forABextends JFrame。如果您进行以下更改,可能会更好。

1,在类A中,不要创建新JFrame对象,只需使用A,因为它也是一个JFrame.

2、在类B中,使用从你实际使用cp = frm.getContentPane();的获取。ContentPaneJFrame

于 2013-10-23T08:55:13.180 回答
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();


    }
}
于 2013-10-23T14:57:14.867 回答