1

我正在尝试使用 setLocation 将此应用程序的组件设置到一个设定的位置,到目前为止我还无法移动这些组件。还有更多代码,但它在大多数情况下都会调用和设置此代码。有任何想法吗?

import javax.swing.*;



public class HangmanPanel extends JPanel {
    private static final long serialVersionUID = -5793357804828609325L;

    public HangmanPanel(){

        JLabel heading = new JLabel("Welcome to the Hangman App");
        JButton Button = new JButton("Ok");
        //Button.addActionListener();   
        JLabel tfLable = new JLabel("Please Enter a Letter");
        JTextField text = new JTextField(10);

        String input = text.getText();
        heading.setLocation(50, 20);
        tfLable.setLocation(20, 100);
        text.setLocation(320, 50);
        Button.setLocation(230, 100);

        this.add(heading);
        this.add(tfLable);
        this.add(text);
        this.add(Button);
    }
}
4

1 回答 1

3

您不应该使用setLocation()布局 Swing 组件,最好使用 Layout。请查看这些布局教程

于 2013-05-08T16:52:51.140 回答