使用Java中的按钮打开不同的框架

时间:2014-12-22 19:26:00

标签: java swing

我正在尝试使用主框架上的按钮打开菜单框。我在按钮上添加了一个事件,我尝试调用另一个类,但它一直给我一个错误“::在此令牌之后预期”

这是我的主要框架

import java.awt.BorderLayout;
import java.awt.EventQueue;

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.JButton;

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


public class Main extends JFrame {

public static JPanel mainPane;
public final JButton menuButton = new JButton("New button");

/**
 * Launch the application.
 */
public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
        public void run() {
            try {
                Main frame = new Main();
                frame.setVisible(true);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    });
}

/**
 * Create the frame.
 */
public Main() {
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setBounds(100, 100, 450, 300);
    mainPane = new JPanel();
    mainPane.setBorder(new EmptyBorder(5, 5, 5, 5));
    setContentPane(mainPane);
    mainPane.setLayout(null);
    menuButton.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent arg0) {
            Menu.main(String[] args);
        }
    });
    menuButton.setBounds(76, 89, 104, 32);
    mainPane.add(menuButton);
}
}

这是我的菜单框架

import java.awt.BorderLayout;
import java.awt.EventQueue;

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.JLabel;


public class Menu extends JFrame {

public static JPanel menuPane;

/**
 * Launch the application.
 */
public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
        public void run() {
            try {
                Menu frame = new Menu();
                frame.setVisible(true);
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    });
}

/**
 * Create the frame.
 */
public Menu() {
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setBounds(100, 100, 450, 300);
    menuPane = new JPanel();
    menuPane.setBorder(new EmptyBorder(5, 5, 5, 5));
    setContentPane(menuPane);
    menuPane.setLayout(null);

    JLabel menuTitle = new JLabel("Menu");
    menuTitle.setBounds(194, 11, 46, 14);
    menuPane.add(menuTitle);

}
}

1 个答案:

答案 0 :(得分:1)

将您的动作事件更改为this.no需要调用main方法。改为创建一个新的Menu类实例。

 menuButton.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent arg0) {
            Menu menu = new Menu();
            menu.setVisible(true);
        }
    });

如果您想要调用main方法,请使用

menuButton.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent arg0) {
           Menu.main(new String[0]);
        }
    });

错误在这里

Menu.main(String[] args);//error

这不是将参数传递给方法的正确方法。这是参数列表的声明。

您可以通过将错误更改为

来更正错误
String args[] = null;
Menu.main(args);    //correct