ActionEvent没有明显的原因停止了工作?

时间:2013-05-12 18:31:11

标签: java swing actionevent

最近我一直在玩Java Swing,我正在尝试创建一个自定义的Minecraft服务器启动器。当我按下标有“属性”的按钮时,它应该更改为一个新的面板,并在一个点上完成。但是,出于某种原因,我无法看到它不再起作用。有人可以帮忙吗?

package custommcserver;

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

class Window extends JFrame implements ActionListener , ItemListener
{
    JPanel mainPnl = new JPanel(new GridLayout(2,1));
    JPanel propPnl = new JPanel();
    JButton startBtn = new JButton("Start");
    JButton stopBtn = new JButton("Stop");
    JButton propBtn = new JButton("Properties");

    JCheckBox allowNether = new JCheckBox("Allow players to visit the Nether dimension");

    public Window()
    {
        super("Custom Minecraft Server Launcher") ;
        setSize(500,200) ; 
        setDefaultCloseOperation(EXIT_ON_CLOSE) ;
        add(mainPnl) ;
        mainPnl.add(startBtn);
        mainPnl.add(stopBtn);
        mainPnl.add(propBtn);
        stopBtn.setEnabled(false);
        startBtn.addActionListener(this);
        stopBtn.addActionListener(this);
        propBtn.addActionListener(this);
        setVisible(true);
    }

    @Override
    public void actionPerformed(ActionEvent event) 
    {

        if (event.getSource() == stopBtn)
        {
            stopBtn.setEnabled(false);
            startBtn.setEnabled(true);
        }

        if (event.getSource() == startBtn)
        {
            stopBtn.setEnabled(true);
            startBtn.setEnabled(false);


        if (event.getSource() == propBtn)
        {
            add(propPnl);
            mainPnl.setVisible(false);
            propPnl.setVisible(true);
            propPnl.add(allowNether);
        }

    }
}

    @Override
    public void itemStateChanged(ItemEvent event) {
        throw new UnsupportedOperationException("Not supported yet.");
    }
}

1 个答案:

答案 0 :(得分:2)

2个问题:

  1. 该行

    if (event.getSource() == propBtn) {

    if的{​​{1}}语句检查范围内,因此实际上没有检查此按钮。将其移出startBtn语句块。

  2. 致电if

  3. 上的revalidaterepaint

    附注:

    • JFrame提供了将组件替换为另一组件的功能。阅读How to Use CardLayout
    • 使用匿名CardLayout类实例来避免问题#1。