如何制作一个简单的GUI,打开另一个GUI并在其关闭时检测。

huangapple 未分类评论47阅读模式
英文:

How to make a simple GUI open another GUI and detect when it closes

问题

public class MainGUI extends JFrame {

    // ... (other code remains the same)

    public MainGUI(String name) {
        // ... (other code remains the same)

        insert.addActionListener(new ActionListener() {

            public void actionPerformed(ActionEvent event) {
                // opens the input GUI window
                InputGUI input = new InputGUI("Input GUI");

                input.addWindowListener(new WindowAdapter() {
                    @Override
                    public void windowClosed(WindowEvent e) {
                        setVisible(true); // Reappear the main GUI when input GUI is closed
                    }
                });
            }

        });

        // ... (other code remains the same)
    }

    // ... (other code remains the same)
}
public class InputGUI extends JFrame {

    // ... (other code remains the same)

    public InputGUI(String name) {
        // ... (other code remains the same)

        ret.addActionListener(new ActionListener() {

            public void actionPerformed(ActionEvent event) {

                String cmd = event.getActionCommand();
                if (cmd.contentEquals("Return to Main Window")) {
                    dispose(); // Closes the input GUI
                }
            }
        });

        // ... (other code remains the same)
    }

    // ... (other code remains the same)
}

请注意,以上提供的只是代码的翻译部分。如果您有关于代码的进一步问题或者需要解释,请随时提问。

英文:

So im trying to create a simple GUI in which it has the option to enter multiple inputs. I want there to exist a main menu GUI and a input GUI. The question is, how can I make the main GUI disappear when "input" is selected, and reappear when "return to main menu" is selected?
<p> Here is my main menu(unfinished)

public class MainGUI extends JFrame{

	private JButton insert, find, browse, create;
	
	public MainGUI(String name) {
		
		super(name);
		
		
		setLayout(null);
		insert = new JButton(&quot;Insert&quot;);
		find = new JButton(&quot;Find&quot;);
		browse = new JButton(&quot;Browse&quot;);
		create = new JButton(&quot;Create Tree From File&quot;);
		
		insert.setBounds(25, 200, 100, 30);
		find.setBounds(125, 200, 100, 30);
		browse.setBounds(225, 200, 100, 30);
		create.setBounds(325, 200, 200, 30);
		
		setVisible(true);
		setSize(600, 300);
		setResizable(false);
		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		
		add(insert);
		add(find);
		add(browse);
		add(create);
		
		insert.addActionListener(new ActionListener() {
			
			public void actionPerformed(ActionEvent event) {
				//opens the input GUI window
				InputGUI input = new InputGUI(&quot;Input GUI&quot;);
                /*I was thinking of adding an if statement here, but it turns
                *out that the if statement executes immediately after the inputGUI is made...
                */

			}
		
		});

		//more action listener stuff here

	}
	public static void main (String [] args) {
	
		MainGUI gui = new MainGUI(&quot;Main Window&quot;);
		
	}
	
}

...and here is the input GUI class (unfinished)

private JButton insert, ret;
	
	public InputGUI(String name) {
		
		super(name);
		
		
		setLayout(null);
		insert = new JButton(&quot;Insert&quot;);
		ret = new JButton(&quot;Return to Main Window&quot;);
		
		
		insert.setBounds(50, 100, 100, 30);
		ret.setBounds(150, 100, 200, 30);
		
		
		setVisible(true);
		setSize(400, 200);
		setResizable(false);
		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		
		add(insert);
		add(ret);
			
		ret.addActionListener(new ActionListener() {

			public void actionPerformed(ActionEvent event) {

				String cmd = event.getActionCommand();
				if(cmd.contentEquals(&quot;Return to Main Window&quot;)) {
					dispose();
                //how can i detect from the main menu gui that this was disposed?
					
				}
					
			}	
		});

        //more action listener stuff
		
	}
	
	public static void main (String [] args) {
	
		InputGUI gui = new InputGUI(&quot;Input Window&quot;);
	}
}

Any help is appreciated!

答案1

得分: 0

使一个窗口在不丢失其内容/数据的情况下 "消失",只需在 MainGUI 对象上调用 setVisible(false)

如果您想要它 "重新出现",再次运行 gui.setVisible(true)

英文:

To make a window "disappear" without losing its content/data simply invoke setVisible(false) on the MainGUI object.

If you would like it to "reappear" run gui.setVisible(true) again.

huangapple
  • 本文由 发表于 2020年4月6日 04:54:40
  • 转载请务必保留本文链接:https://java.coder-hub.com/61049372.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定