在下面的代码中,我试图在单击左键时将三个按钮向左移动。当我点击它;目前没有任何事任何人都可以向我解释我在这里做错了什么吗?此外,由于某种原因,它已经停止正确编译,我不确定为什么,但我相信它是因为我的代码中的错误,当您单击按钮时尝试让按钮移动到左侧。我不希望窗户移动。只是窗口内的按钮。有没有人看到我做错了什么,你能解释一下吗?
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();
}
}
答案 0 :(得分: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)完成,否则您可能会得到不需要的视觉效果。有关说明,请参阅here。
EDIT ^ 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绘制它在屏幕上。
答案 1 :(得分:1)
您的代码将无法编译,因为静态main
方法出现在内部类eventHandle
中。您只需将其移动到外部类Buttons
的类主体中即可解决。
由于您在类级别拥有所有对象引用,因此可以使用,例如:
进行按钮对齐flt.setAlignment(FlowLayout.RIGHT);
buttonPanel.revalidate();
...
您正在调整FlowLayout
的布局对齐方式并重新验证,以直观地反映面板上的更新更改。
答案 2 :(得分:1)
您应该更新布局管理器以使组件向左或向右对齐。尝试类似的事情;
((FlowLayout)getLayout()).setAlignment(FlowLayout.LEFT);
相反