簡體   English   中英

如何從另一個框架打開框架 Java Swing

[英]how to open frame from another frame Java Swing

我正在制作一個有多個子程序的程序,但是當我試圖打開一個新框架時,它什么也沒做。 調用框架的程序:

import javax.swing.*;
import java.awt.*;

public class Main {
  public static void main(String[] args) {
    JFrame frame = new JFrame("Options");
    JButton notepad = new JButton("Notepad");
    JButton todo = new JButton("To-Do List");
    NoteListe noteListener = new NoteListe();
    
    frame.setVisible(true);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(500,500);
    frame.setLayout(new GridLayout(1,2));

    frame.add(notepad);
    frame.add(todo);

    notepad.addActionListener(noteListener);
    
  }
}

記事本按鈕的動作監聽器:

import java.awt.event.*;

public class NoteListe implements ActionListener{
  public void actionPerformed(ActionEvent e){
    new MainNote();
  }
}

記事本:

import javax.swing.*;
import java.awt.*;

public class MainNote {
  public static void main(String[] args) {
    JFrame frame = new JFrame("Text Editor");

    frame.setVisible(true);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(500,500);
    frame.setLayout(new GridLayout(2,1));
  }
}

我真的認為你需要仔細看看:

這些是真正的基本概念,在您冒險進入 GUI 開發的狂野和無情的世界之前,您應該牢牢掌握它們。

import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.EventQueue;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Insets;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.border.EmptyBorder;

public class Main {

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

    public Main() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                JFrame frame = new JFrame();
                frame.add(new MenuPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class MenuPane extends JPanel {

        public MenuPane() {
            setLayout(new GridBagLayout());
            setBorder(new EmptyBorder(32, 32, 32, 32));

            JButton notepad = new JButton("Notepad");
            JButton todo = new JButton("To-Do List");

            GridBagConstraints gbc = new GridBagConstraints();
            gbc.fill = GridBagConstraints.BOTH;
            gbc.gridwidth = GridBagConstraints.REMAINDER;
            gbc.insets = new Insets(8, 8, 8, 8);

            add(notepad, gbc);
            add(todo, gbc);

            notepad.addActionListener(new ActionListener() {
                @Override
                public void actionPerformed(ActionEvent e) {
                    MainNote note = MainNote.show(MenuPane.this);
                    note.setText("This is where your text goes");
                }
            });
        }

    }

    public static class MainNote extends JPanel {

        private JTextArea ta;

        public MainNote() {
            setLayout(new BorderLayout());
            ta = new JTextArea(20, 40);
            add(new JScrollPane(ta));
        }

        public void setText(String text) {
            ta.setText(text);
        }

        public String getText() {
            return ta.getText();
        }

        public static MainNote show(Component parent) {
            MainNote mainNote = new MainNote();
            JFrame frame = new JFrame("Text Editor");
            frame.add(mainNote);
            frame.pack();
            frame.setLocationRelativeTo(parent);
            frame.setVisible(true);
            return mainNote;
        }
    }
}

注意:我使用了static方法 ( show ) 來簡化另一個show的構造。 這只是一個委托工作流程,因為我將創建 window 的責任委托給該方法,但我仍在取回MainNote的一個實例。

因為MainNote只是一個JPanel ,所以它可以添加到我想要的任何容器中。 因為我已將功能“封裝”到 class 本身中,所以它更易於管理。

您需要使框架可見。

import java.awt.event.*;

public class NoteListe implements ActionListener{
  public void actionPerformed(ActionEvent e){
    new MainNote().setVisible(true);  <==== set it to visible.
  }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM