0

在下面的代码中,当您单击左按钮时,我试图将三个按钮向左移动。当我点击它时;目前什么都没有发生。谁能向我解释我在这里做错了什么?此外,由于某种原因,它已停止正确编译,我不确定为什么,但我相信这是因为我的代码中出现错误,而当您单击按钮时试图让按钮向左移动。我不希望窗口移动。只是窗口内的按钮。有没有人看到我做错了什么,你能解释一下吗?

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;

public class Buttons extends JFrame {
//Control Definitions

    JButton resetButton;
    JButton leftButton;
    JButton colorButton;
    JPanel buttonPanel;
// Layout Definiton
    eventHandle evt;
    FlowLayout flt;
    Point point; //to Hold Previous Window Position
    Color color; //to Hold Previous Color

    public Buttons() {
        super("Buttons Window");
        flt = new FlowLayout();//inialize the Flow Layout
        buttonPanel = new JPanel(flt);
        //inialize the buttonPanel With Flow Layout
        //initialize buttons
        resetButton = new JButton("Reset");
        leftButton = new JButton("Left");
        colorButton = new JButton("Blue");
        evt = new eventHandle(); //initiate the eventhandle class
        buttonPanel.add(leftButton); //add leftButton
        buttonPanel.add(colorButton);//add colorButton
        buttonPanel.add(resetButton);//add colorButton
        getContentPane().add(buttonPanel);//buttonPanel
        //add actionlistners
        leftButton.addActionListener(evt);
        colorButton.addActionListener(evt);
        resetButton.addActionListener(evt);
        setBounds(20, 120, 250, 70);
        //following Initate the point with Center of Scren
        point = new Point((Toolkit.getDefaultToolkit().
                getScreenSize().width - getWidth()) / 2, 
                (Toolkit.getDefaultToolkit().getScreenSize().height
                - getHeight()) / 2);
        setLocation(point); //locates the window in center
        color = buttonPanel.getBackground();//stores the initial color
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setVisible(true);
    }

    class eventHandle implements ActionListener { //Event Handler

        public void actionPerformed(ActionEvent e) {
            {
                if (e.getSource() == leftButton) ///if its from leftButton
                {
                    leftButton.setAlignmentX(Component.LEFT_ALIGNMENT);
                    colorButton.setAlignmentX(Component.LEFT_ALIGNMENT);
                    resetButton.setAlignmentX(Component.LEFT_ALIGNMENT);
    //setLocation( (point.x -150), point.y);//shift the window 150 pixels left
                } else if (e.getSource() == colorButton) {
                    buttonPanel.setBackground(color.BLUE); 
                    //sets the backgorund to Blue
                } else {
                    leftButton.setAlignmentX(Component.CENTER_ALIGNMENT); 
                    //sets the location to previous location
                    colorButton.setAlignmentX(Component.CENTER_ALIGNMENT);
                    resetButton.setAlignmentX(Component.CENTER_ALIGNMENT);
                }

            }
        }
    }

    public static void main(String[] args) {
        Buttons buttonwindow = new Buttons();
    }
}
4

3 回答 3

1

它已停止编译,因为您删除了一项荣誉,因此在方法上方添加一项荣誉“}”:

public static  void main(String[] args)

并且代码应该编译。请反馈。

编辑:

还像这样重写你的主要方法:

public static void main(String[] args) {

        SwingUtilities.invokeLater(new Runnable() {

                    @Override
                    public void run() {
                        Buttons buttonwindow = new Buttons();
                    }
                }
            );           
    }

Swing 组件的每次使用都必须通过 Event Dispatch Thread(缩写为EDT)来完成,否则您可能会得到不需要的视觉效果。请参阅此处了解说明。

编辑^2:

要实现所需的行为,请像这样重写动作侦听器:

if (e.getSource() == leftButton)  {
    ((FlowLayout)buttonPanel.getLayout()).setAlignment(FlowLayout.LEFT); //1
    buttonPanel.revalidate(); //2
}
else if (e.getSource() == colorButton) {
    buttonPanel.setBackground(color.BLUE); 
} 
else {
    ((FlowLayout)buttonPanel.getLayout()).setAlignment(FlowLayout.CENTER);
    buttonPanel.revalidate();
}

对 Swing 组件的视觉外观的任何更改都必须通过分配的布局管理器完成,在本例中为FlowLayout - 在第 1 行中。

要查看更改,您必须通知 Swing 组件布局管理器重新排列组件 - 在第 2 行中,revalidate()方法“通知”布局管理器重新计算新位置并最终“通知”EDT 将其绘制在屏幕上。

于 2012-10-13T11:48:53.877 回答
1

您的代码不会编译,因为静态main方法出现在内部类eventHandle中。您只需将其移入外部类的类主体即可修复Buttons

由于您在类级别拥有所有对象引用,因此您可以使用以下方法进行按钮对齐:

flt.setAlignment(FlowLayout.RIGHT);
buttonPanel.revalidate();
...

在这里,您正在调整布局对齐FlowLayout并重新验证以直观地反映面板上的更新更改。

于 2012-10-13T11:49:25.377 回答
1

您应该更新布局管理器以将组件向左或向右对齐。尝试类似的东西;

((FlowLayout)getLayout()).setAlignment(FlowLayout.LEFT);

反而

于 2012-10-13T11:50:14.003 回答